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

Ubuntu vs Debian: Linux Distributions Compared Deep Dive

Debian and Ubuntu are two popular Linux distributions. In this deep dive we will guide…

25 minutes ago

How to Install Google Cloud BigQuery Python client library on Linux

In this article, we will see how to Install Google Cloud BigQuery Python client library…

2 days ago

Wallpaper Contest for Xfce 4.20 open for voting

Nov 15,2024 Wallpaper Contest for Xfce 4.20 open for voting The submission phase for the…

2 days ago

Canonical announces the first MicroCloud LTS release

MicroCloud 2.1.0 LTS is now available, expanding the number of Canonical infrastructure solutions with a…

3 days ago

Join Canonical in Paris at Dell Technologies Forum

Canonical is thrilled to be joining forces with Dell Technologies at the upcoming Dell Technologies…

4 days ago

Bringing automation to open source 5G software at Ubuntu Summit 2024

In today’s massive private mobile network (PMN) market, one of the most common approaches to…

5 days ago