Categories: Ubuntu

How to Install Python 3.9 on Ubuntu 22.04

Python is the most widely utilized high-level language that comprises applications ranging from normal scripts to complicated machine learning algorithms. It is known for its straightforward conversion to newer releases and its basic, easy-to-learn syntax, which enhances readability and also reduces software maintenance costs.

More specifically, Python 3.9 is embedded with new syntax, built-in, standard library features, new library modules, and Interpreter improvements.

This write-up will discuss the procedure to install Python 3.9 on Ubuntu 22.04 using two different methods. So, let’s start!

How to Install Python 3.9 on Ubuntu 22.04 using APT

Sponsored

To install Python on Ubuntu 22.04 with APT, you must follow the below-given step-by-step instructions.

Step 1: Update system repositories
Press “CTRL+ALT+T” to open the terminal of the Ubuntu 22.04 and run the below-given command to update system repositories:

$ sudo apt update

Step 2: Install prerequisite package
The next step is about the installation of the “software-properties-common” package:

$ sudo apt install software-properties-common

Step 3: Add “deadsnakes” PPA
After fulfilling all of the prerequisites, move ahead and add the “deadsnakes” PPA to your system source list:

$ sudo add-apt-repository ppa:deadsnakes/ppa

Step 4: Python 3.9 installation on Ubuntu 22.04
Now, execute the below-given command for installation of Python 3.9 on your Ubuntu 22.04 system:

$ sudo apt install python3.9

Enter “y” to permit the installation process to continue:

Step 5: Verify Python version
Lastly, execute the “python3.9” command with the “–version” option to verify the installed version of Python:

$ python3.9 –version

As you can see, the given output signifies that we have successfully installed Python 3.9 on our Ubuntu 22.04:

Now, let’s check out the second method for the installation of Python 3.9 on Ubuntu 22.04.

How to install Python 3.9 on Ubuntu 22.04 from source

Installing Python from source has its advantages as it permits you to install the most latest Python version and tweak the build options. To avail this method, follow the below-given procedure.

Step 1: Install required dependencies
Firstly, utilize the given command for the installation of the required dependencies for Python 3.9:

$ sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev -y

After executing the above command, wait for a few minutes:

Step 2: Download compressed Python 3.9 package
Next, utilize the below-given “wget” command for downloading Python 3.9 compressed package:

$ wget https://www.python.org/ftp/python/3.9.7/Python-3.9.7.tgz

Sponsored

Step 3: Extract Python 3.9 package
Now, use the “tar” command to extract the content of the Python 3.9 downloaded compressed file:

$ tar -xvf Python-3.9.7.tgz

Step 4: Start building Python 3.9
To start building Python 3.9 on your Ubuntu 22.04 system, firstly, move to the “Python-3.9.7/” directory by utilizing the “cd” command:

$ cd Python-3.9.7/

Then, start the “configure” script and add the “–enable-optimizations” option for optimizing the Python binary:

$ ./configure –enable-optimizations

After doing so, execute the “make” command for starting the Python 3.9 building process:

$ make

After completing the build process, write out the following command for installing the Python 3.9 binaries:

$ sudo make altinstall

Step 5: Verify Python version
Now, execute the “python3.9” command with the “–version” option to verify the installed version of Python:

$ python3.9 –version

As you can see, the given output signifies that we have successfully installed Python 3.9 on our Ubuntu 22.04:

How to remove Python 3.9 from Ubuntu 22.04

To remove Python 3.9 from Ubuntu 22.04, type out the following command:

$ sudo apt-get remove python3.9

We have compiled two different methods for installing Python 3.9 on Ubuntu 22.04.

Conclusion

To install Python 3.9 on Ubuntu 22.04, you can use both APT and compressed Python 3.9 source file. By using APT, firstly, install the prerequisites and execute the “$ sudo apt install python3.9” command. While installing Python 3.9 from source, you have to download and install the Python 3.9 package and then build the Python binaries. This write-up discussed two methods for the installation of Python 3.9 on Ubuntu 22.04.

Ubuntu Server Admin

Recent Posts

Kolla Ansible OpenStack Installation (Ubuntu 24.04)

Kolla Ansible provides production-ready containers (here, Docker) and deployment tools for operating OpenStack clouds. This…

5 hours ago

Canonical announces first Ubuntu Desktop image for Qualcomm Dragonwing™ Platform with Ubuntu 24.04

This public beta enables the full Ubuntu Desktop experience on the Qualcomm Dragonwing™ QCS6490 and…

1 day ago

The long march towards delivering CRA compliance

Time is running out to be in full compliance with the EU Cyber Resilience Act,…

1 day ago

Extra Factor Authentication: how to create zero trust IAM with third-party IdPs

Identity management is vitally important in cybersecurity. Every time someone tries to access your networks,…

2 days ago

Ubuntu Weekly Newsletter Issue 889

Welcome to the Ubuntu Weekly Newsletter, Issue 889 for the week of April 20 –…

4 days ago

From pidfd to Shimanami Kaido: My RubyKaigi 2025 Experience

Introduction I just returned from RubyKaigi 2025, which ran from April 16th to 18th at…

4 days ago