Last active
January 17, 2020 12:56
-
-
Save hohl/66a20c550ac292c85e10148f0695b5a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install software-properties-common | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
# Press [ENTER] | |
sudo apt-get install python3.7 python3.7-{dev,venv,distutils} | |
# Then create a virtual environment, for ex.: | |
mkdir ~/venvs && cd ~/venvs | |
python3.7 -m venv tf21 | |
source tf21/bin/activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment