Last active
August 5, 2024 03:54
-
-
Save marcelofern/99b59005ea3d86d33de311d1028e7616 to your computer and use it in GitHub Desktop.
Build python version
This file contains 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
wget https://www.python.org/ftp/python/3.11.5/Python-3.11.5.tgz | |
tar -xzf Python-3.11.5.tgz && cd Python-3.11.5 | |
./configure --prefix=$HOME/localpython/3.11.5 && make && make install | |
./python -m venv env_3115 | |
source env3115/bin/activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment