Skip to content

Instantly share code, notes, and snippets.

@vicente-gonzalez-ruiz
Created November 10, 2023 12:11
Show Gist options
  • Save vicente-gonzalez-ruiz/cbd5bb0a8fb35c8805d38070f35e99bc to your computer and use it in GitHub Desktop.
Save vicente-gonzalez-ruiz/cbd5bb0a8fb35c8805d38070f35e99bc to your computer and use it in GitHub Desktop.
# Install required pakages
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
# Download from https://www.python.org/downloads/source/ the Python's sources
# Decompress, compile, and install (example)
tar -xf Python-3.10.*.tgz
cd Python-3.10.*/
./configure --enable-optimizations
make -j $(nproc)
sudo make altinstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment