Skip to content

Commit 86fc947

Browse files
authored
Install latest version of Pip
The Ubuntu distribution version of Pip no longer works (complains about module packaging missing when running pip). The solution is to install the very latest version of Pip instead. This also fixes issues with the dependencies for the Bleach package.
1 parent ff99b16 commit 86fc947

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vagrant/pg_config.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
apt-get -qqy update
22
apt-get -qqy install postgresql python-psycopg2
33
apt-get -qqy install python-flask python-sqlalchemy
4-
apt-get -qqy install python-pip
4+
wget https://bootstrap.pypa.io/get-pip.py
5+
python ./get-pip.py
56
pip install bleach
67
pip install oauth2client
78
pip install requests

0 commit comments

Comments
 (0)