aboutsummaryrefslogtreecommitdiff
path: root/vagrant/bootstrap.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/bootstrap.sh')
-rw-r--r--vagrant/bootstrap.sh3
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
bgstack15