Last active
September 21, 2022 12:03
-
-
Save pablocattaneo/805d8eccec290a2d3033d231b7973202 to your computer and use it in GitHub Desktop.
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
# 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