Last active
June 7, 2022 17:23
-
-
Save josepsmartinez/67fc4993ffd24ec248713789126268b2 to your computer and use it in GitHub Desktop.
Install Python from source (Debian systems)
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
RELEASE_URL=https://www.python.org/ftp/python/3.10.5/Python-3.10.5.tgz | |
wget ${RELEASE_URL} -O Python-src.tgz && tar xzf Python-src.tgz &&\ | |
cd Python-src &&\ | |
./configure --enable-optimizations --with-openssl=$(which openssl) &&\ | |
sudo make altinstall &&\ | |
rm -rf Python-src Python-src.tgz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment