Skip to content

Instantly share code, notes, and snippets.

@josepsmartinez
Last active June 7, 2022 17:23
Show Gist options
  • Save josepsmartinez/67fc4993ffd24ec248713789126268b2 to your computer and use it in GitHub Desktop.
Save josepsmartinez/67fc4993ffd24ec248713789126268b2 to your computer and use it in GitHub Desktop.
Install Python from source (Debian systems)
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