diff options
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile index 2a26aab..7684c1a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -7,9 +7,10 @@ INSTALL_DEPS=<<EOF cd /vagrant sudo add-apt-repository -y ppa:deadsnakes/ppa sudo apt-get update -sudo apt-get install -y --allow-unauthenticated python2.7-dev python3.5-dev python3.6-dev python3.7-dev python3.8-dev -sudo apt-get install -y --allow-unauthenticated python3.8-distutils # Needed to work around python3.8+virtualenv issue +sudo apt-get install -y --allow-unauthenticated python2.7-dev python3.5-dev python3.6-dev python3.7-dev python3.8-dev python3.9-dev +sudo apt-get install -y --allow-unauthenticated python3.8-distutils python3.9-distutils # Needed to work around python3.8/9+virtualenv issue sudo apt-get install -y python-virtualenv git ipython python-pip python3-pip silversearcher-ag jq +sudo apt-get install -y build-essential libssl-dev libffi-dev # for rebuilding cryptography (required for pypy2) sudo apt-get purge -y python3-virtualenv sudo pip3 install virtualenv |