From 21a7dbb75e7a416047f1da33c499ccae960419e8 Mon Sep 17 00:00:00 2001 From: Arron Atchison Date: Tue, 16 Aug 2016 09:52:33 -0500 Subject: [PATCH] I changed the name of build_host_setup.sh to build_host_setup_debian.sh becasue of the inclusion of build_host_setup_fedora.sh --- build_host_setup_debian.sh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 build_host_setup_debian.sh diff --git a/build_host_setup_debian.sh b/build_host_setup_debian.sh new file mode 100755 index 0000000000..0f7a84d601 --- /dev/null +++ b/build_host_setup_debian.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +sudo apt-get install -y \ + git \ + python \ + python-dev \ + python-pip \ + python-setuptools \ + python-virtualenv \ + python-gobject-dev \ + virtualenvwrapper \ + libtool \ + libffi-dev \ + libssl-dev \ + autoconf \ + bison \ + swig \ + libglib2.0-dev \ + s3cmd \ + portaudio19-dev \ + mpg123 \ + screen \ + flac \ + curl + +# upgrade virtualenv to latest from pypi +sudo pip install --upgrade virtualenv