Created
August 3, 2023 22:13
-
-
Save seahrh/65e7159a2e779f0a970b094f91713315 to your computer and use it in GitHub Desktop.
Install Python 3.11 on Ubuntu 22.04|20.04|18.04
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
sudo apt update && sudo apt upgrade -y | |
sudo apt install software-properties-common -y | |
sudo add-apt-repository ppa:deadsnakes/ppa | |
sudo apt install python3.11 | |
python3.11 -V | |
curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11 | |
pip3.11 -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ref https://computingforgeeks.com/how-to-install-python-on-ubuntu-linux/?expand_article=1&expand_article=1