Last active
September 27, 2019 15:22
-
-
Save Victoriapm/ecf3c8fe68d41442ba287f2db5e883a5 to your computer and use it in GitHub Desktop.
Python 3.7 installation (Ubuntu)
This file contains hidden or 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 update | |
| sudo apt install software-properties-common | |
| sudo add-apt-repository ppa:deadsnakes/ppa | |
| sudo apt install python3.7 | |
| #Verification: should return Python 3.7.x | |
| python3.7 --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment