Skip to content

Commit b176045

Browse files
committed
fix: Install Bleach dependencies in correct order
A more elegant solution to the original problem has been found. It seems that the Bleach package now installs its dependencies in the wrong order, which then breaks the pip command itself. The dependencies are now installed before Bleach to resolve this issue.
1 parent 86fc947 commit b176045

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

vagrant/pg_config.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
apt-get -qqy update
22
apt-get -qqy install postgresql python-psycopg2
33
apt-get -qqy install python-flask python-sqlalchemy
4-
wget https://bootstrap.pypa.io/get-pip.py
5-
python ./get-pip.py
4+
apt-get -qqy install python-pip
5+
pip install packaging
6+
pip install appdirs
7+
pip install -U six
68
pip install bleach
79
pip install oauth2client
810
pip install requests

0 commit comments

Comments
 (0)