Skip to content

Commit 517662b

Browse files
authored
Correctly install Python 2 packages.
1 parent eab233e commit 517662b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vagrant/Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Vagrant.configure("2") do |config|
1717
pip3 install sqlalchemy flask-sqlalchemy psycopg2 bleach
1818
1919
apt-get -qqy install python python-pip
20-
pip install --upgrade pip
21-
pip install flask packaging oauth2client redis passlib flask-httpauth
22-
pip install sqlalchemy flask-sqlalchemy psycopg2 bleach
20+
pip2 install --upgrade pip
21+
pip2 install flask packaging oauth2client redis passlib flask-httpauth
22+
pip2 install sqlalchemy flask-sqlalchemy psycopg2 bleach
2323
2424
su postgres -c 'createuser -dRS ubuntu'
2525
su ubuntu -c 'createdb'

0 commit comments

Comments
 (0)