File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Set up and update package repos
4
- add-apt-repository ppa:fkrull/ deadsnakes
4
+ add-apt-repository ppa:deadsnakes/ppa
5
5
apt-get update
6
6
7
7
# 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
24
24
# done. set them to the vagrant user so the venv's can be updated by pip later.
25
25
mkdir venvs
26
26
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
30
30
chown -R vagrant:vagrant venvs
31
31
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# Set up and update package repos
4
- add-apt-repository ppa:fkrull/ deadsnakes
4
+ add-apt-repository ppa:deadsnakes/ppa
5
5
apt-get update
6
6
7
7
# Install necessary development tools, libs, etc.
You can’t perform that action at this time.
0 commit comments