diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-11-27 07:46:34 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-11-27 07:46:34 +0100 |
commit | 38a1fde2850568fd0092df5e2a76f057a6cabd94 (patch) | |
tree | 21f4f92f7ec02f10d4bd17abe02d7805975e3fb4 /vagrant | |
parent | Now using Wily server for Vagrant. (diff) | |
download | newspipe-38a1fde2850568fd0092df5e2a76f057a6cabd94.tar.gz newspipe-38a1fde2850568fd0092df5e2a76f057a6cabd94.tar.bz2 newspipe-38a1fde2850568fd0092df5e2a76f057a6cabd94.zip |
Solves an issue with pip.
Diffstat (limited to 'vagrant')
-rw-r--r-- | vagrant/bootstrap.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh index c37acb2e..2720e9c3 100644 --- a/vagrant/bootstrap.sh +++ b/vagrant/bootstrap.sh @@ -19,6 +19,9 @@ cd JARR # For lxml
apt-get install -y libxml2-dev libxslt1-dev
# installation with pip
+wget https://bootstrap.pypa.io/get-pip.py
+sudo python3.4 get-pip.py
+rm get-pip.py
sudo pip3 install --upgrade -r requirements.txt
# copy of the default configuration files for vagrant
cp vagrant/conf.cfg-sample conf/conf.cfg
|