Site icon TechGit

Python 3.9.0 Released: Install Python via PPA in Ubuntu Linux

Python 3.9.0 released. Here is how to install Python in Ubuntu Linux (via PPA). Python 3.9.0 is the stable release of Python programming language, and it contains many new features and optimizations.

Python 3.9.0 new features

Some of the new major new features and changes in Python 3.9 are:

Install Python 3.9.0 in Ubuntu

Run the following commands in terminal to install Python 3.9.0 in Ubuntu:

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update
sudo apt install python3.9
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 2
python --version

The next release after 3.9 will be 3.10. It will be an incremental improvement over 3.9, just as 3.9 was over 3.8, and so on.

Original Article

FacebookTwitterTumblrRedditLinkedInHacker NewsDiggBufferGoogle ClassroomThreadsXINGShare
Exit mobile version