Last active
September 20, 2019 05:20
-
-
Save mirfan899/075671ac632c6fe655989e570f3e4490 to your computer and use it in GitHub Desktop.
Compile Python 3.6.9 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
#!/usr/bin/env bash | |
wget https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz | |
tar xzf Python-3.6.9.tgz | |
cd Pyhton-3.6.9 | |
./configure --enable-optimizations | |
make -j 2 | |
make altinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment