Skip to content

Commit fa205ea

Browse files
committed
Update deadsnakes ppa address
1 parent 062f721 commit fa205ea

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

vagrant/ubuntu-14.04/bootstrap.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Set up and update package repos
4-
add-apt-repository ppa:fkrull/deadsnakes
4+
add-apt-repository ppa:deadsnakes/ppa
55
apt-get update
66

77
# Install necessary development tools, libs, etc.
@@ -24,8 +24,8 @@ apt-get install -y python3.6 python3.6-dev libpython3.6-dev python3.6-venv
2424
# done. set them to the vagrant user so the venv's can be updated by pip later.
2525
mkdir venvs
2626
virtualenv --python=python2.7 venvs/Py27
27-
pyvenv-3.4 venvs/Py34
28-
pyvenv-3.5 venvs/Py35
29-
pyvenv-3.6 venvs/Py36
27+
python3.4 -m venv venvs/Py34
28+
python3.5 -m venv venvs/Py35
29+
python3.6 -m venv venvs/Py36
3030
chown -R vagrant:vagrant venvs
3131

vagrant/ubuntu-16.04/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Set up and update package repos
4-
add-apt-repository ppa:fkrull/deadsnakes
4+
add-apt-repository ppa:deadsnakes/ppa
55
apt-get update
66

77
# Install necessary development tools, libs, etc.

0 commit comments

Comments
 (0)