Update deadsnakes ppa address

This commit is contained in:
Robin Dunn
2018-02-01 11:38:27 -08:00
parent 22666f6ff1
commit a2d1384d38
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Set up and update package repos
add-apt-repository ppa:fkrull/deadsnakes
add-apt-repository ppa:deadsnakes/ppa
apt-get update
# 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
# done. set them to the vagrant user so the venv's can be updated by pip later.
mkdir venvs
virtualenv --python=python2.7 venvs/Py27
pyvenv-3.4 venvs/Py34
pyvenv-3.5 venvs/Py35
pyvenv-3.6 venvs/Py36
python3.4 -m venv venvs/Py34
python3.5 -m venv venvs/Py35
python3.6 -m venv venvs/Py36
chown -R vagrant:vagrant venvs

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Set up and update package repos
add-apt-repository ppa:fkrull/deadsnakes
add-apt-repository ppa:deadsnakes/ppa
apt-get update
# Install necessary development tools, libs, etc.