Created
November 10, 2023 12:11
-
-
Save vicente-gonzalez-ruiz/cbd5bb0a8fb35c8805d38070f35e99bc 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
# 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