Created
October 28, 2018 09:55
-
-
Save carver/4562afcf0529a91c7d9d626821b4b66e to your computer and use it in GitHub Desktop.
Installing Python 3.7 from source
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
# roughly | |
wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz | |
tar xf Python-3* | |
cd Python-3* | |
./configure | |
make | |
make altinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment