diff --git a/vagrant/ubuntu-16.04/bootstrap.sh b/vagrant/ubuntu-16.04/bootstrap.sh index 5993fc2b..78262a83 100644 --- a/vagrant/ubuntu-16.04/bootstrap.sh +++ b/vagrant/ubuntu-16.04/bootstrap.sh @@ -20,6 +20,7 @@ apt-get install -y libjpeg-dev libtiff-dev \ apt-get install -y python2.7 python2.7-dev libpython2.7-dev python-virtualenv apt-get install -y python3.5 python3.5-dev libpython3.5-dev python3.5-venv apt-get install -y python3.6 python3.6-dev libpython3.6-dev python3.6-venv +apt-get install -y python3.7 python3.7-dev libpython3.7-dev python3.7-venv # Set up virtual environments for each Python where the Phoenix builds will be # done. set them to the vagrant user so the venv's can be updated by pip later. @@ -27,6 +28,7 @@ mkdir venvs virtualenv --python=python2.7 venvs/Py27 pyvenv-3.5 venvs/Py35 python3.6 -m venv venvs/Py36 +python3.7 -m venv venvs/Py37 chown -R vagrant:vagrant venvs