Skip to content

Commit

Permalink
Use pip2 (close #389)
Browse files Browse the repository at this point in the history
  • Loading branch information
spenes committed Oct 20, 2023
1 parent 730caf4 commit 73903c6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions vagrant/up.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
#echo "-------------------------------"
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y language-pack-en python-pip libffi-dev libssl-dev python-dev
sudo pip install --upgrade pip
sudo pip install markupsafe==1.1.1
sudo pip install setuptools==40.8.0
sudo pip install paramiko==1.16.0
apt-get install -y language-pack-en python-pip libffi-dev libssl-dev python2-dev
sudo pip2 install --upgrade pip
sudo pip2 install markupsafe==1.1.1
sudo pip2 install setuptools==40.8.0
sudo pip2 install paramiko==1.16.0
sudo sh -c 'echo "ubuntu ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers' # see https://askubuntu.com/questions/192050/how-to-run-sudo-command-with-no-password

#echo "=================="
#echo "INSTALLING ANSIBLE"
#echo "------------------"
sudo pip install ansible==2.8.1
sudo pip2 install ansible==2.8.1

#echo "=========================================="
#echo "RUNNING PLAYBOOKS WITH ANSIBLE*"
Expand Down

0 comments on commit 73903c6

Please sign in to comment.