Install and Update Python to 3.9 in Ubuntu
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
apt update | |
apt install software-properties-common | |
add-apt-repository ppa:deadsnakes/ppa | |
apt update | |
apt install python3.9 python3.9-venv python3.9-dev |
Comments
Post a Comment