Skip to content

Instantly share code, notes, and snippets.

@pablocattaneo
Last active September 21, 2022 12:03
Show Gist options
  • Save pablocattaneo/805d8eccec290a2d3033d231b7973202 to your computer and use it in GitHub Desktop.
Save pablocattaneo/805d8eccec290a2d3033d231b7973202 to your computer and use it in GitHub Desktop.
# Source: https://www.youtube.com/watch?v=vEdDGa9mKsY
sudo apt update # update list of available packages
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libreadline-dev libssl-dev libffi-dev libsqlite3-dev wget libbz2-dev # install required dependencies to compile Python
wget https://www.python.org/ftp/python/3.9.14/Python-3.9.14.tgz # Download python version
sudo tar -xf Python-3.9.14.tgz #decompress file
cd Python-3.9.14
sudo ./configure --enable-optimizations #Enable optimizations
sudo make altinstall #Build and install Python
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment