Last active
January 5, 2024 08:27
Revisions
-
a1mzone revised this gist
Jan 5, 2024 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -14,8 +14,9 @@ sudo apt install software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa sudo apt update ### Add & Update Default sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 2 sudo update-alternatives --config python3 ### Virtualenv Wrapper sudo apt install virtualenvwrapper -
a1mzone revised this gist
Jan 4, 2024 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ ### Compile git clone https://github.com/python/cpython git checkout \<version\> ./configure --enable-optimizations make -j8 @@ -20,7 +20,7 @@ sudo update-alternatives --config python ### Virtualenv Wrapper sudo apt install virtualenvwrapper sudo find / -name "virtualenvwrapper.sh" mkvirtualenv -p python\<version\> \<name\> workon \<name\> deacative rmvirtualenv \<name\> -
a1mzone revised this gist
Jan 4, 2024 . No changes.There are no files selected for viewing
-
a1mzone revised this gist
Jan 4, 2024 . 1 changed file with 13 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,18 @@ git checkout <version> make -j8 sudo make altinstall ### Install Precompiled on Ubuntu sudo apt install software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa sudo apt update ### Update Default sudo update-alternatives --config python ### Virtualenv Wrapper sudo apt install virtualenvwrapper sudo find / -name "virtualenvwrapper.sh" mkvirtualenv -p python<version> <name> workon <name> deacative rmvirtualenv <name> -
a1mzone revised this gist
Jan 4, 2024 . 2 changed files with 15 additions and 6 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +0,0 @@ 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ # Python ### Compile git clone https://github.com/python/cpython git checkout <version> ./configure --enable-optimizations make -j8 sudo make altinstall ### Install Ubuntu sudo apt install software-properties-common sudo add-apt-repository ppa:deadsnakes/ppa sudo apt update -
a1mzone created this gist
Jun 23, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ git clone https://github.com/python/cpython git checkout <version> ./configure --enable-optimizations make -j8 sudo make altinstall