Python 13 Installation in Linux

Step 1: Updating and Upgrading Operating System

Before Installing Python 3.12 with APT in Linux(Ubuntu) we have to Update Operating System. To update the operating system use the command mentioned below.

sudo apt update

updating OS

To Upgrade the operating system use the command mentioned below.

sudo apt upgrade

Upgrading OS

Step 2: Adding the deadsnakes PPA to your system’s package sources

Deadsnakes PPA is a popular and trusted repository maintained by the Ubuntu community. It offers the latest versions of Python, including development and unstable releases, which may not be available in the official Ubuntu repositories.The purpose of using the deadsnakes PPA is to gain access to the most recent Python versions, as the official Ubuntu repositories often lag behind in providing the latest releases. By adding the deadsnakes PPA to your system’s package sources, you can install the latest Python versions directly from this repository.

Install the prerequisite for adding PPAs:

This command installs the software-properties-common package, which provides a tool called add-apt-repository. This tool is used to add new package repositories (like the deadsnakes PPA) to your system’s sources list.

sudo apt install software-properties-common -y

installing perquisite

Adding deadsnakes PPA:

This command adds the deadsnakes PPA to your system’s package sources list. The ppa:deadsnakes/ppa part specifies the PPA location, which is hosted on Launchpad (a software collaboration platform used by Ubuntu and other distributions).

sudo add-apt-repository ppa:deadsnakes/ppa

Adding deadsnakes PPA

Adding deadsnakes PPA

We have to update apt after we have installed repository.

Sudo apt update

Step 3: Installing Python3.13 in Linux

Now we can install python3.13 using command mentioned below.

sudo apt install python3.13

Installing python 3.13 on Linux

Step 4: Verifying the Installation of python3.13 in Linux

To verify the installation of python3.13 in linux we can simply display the version of python3.13 by using the command mentioned below.

python3.13 --version

verifying the

Step 5: Installing PIP

If you have used apt to install python3.13 then you might have to install pip3.13 version manually , to do so command is mentioned below.

curl -sS https://bootstrap.pypa.io/get-pip.py | python3.13

installing pip3.13 for python3.13

Step 6: Verifying Installation of PIP3.13

To verify the installation of pip3.13 in Linux we can use the command mentioned below.

verifying

How to install Python on Linux?

Before we start with how to install Python3 on Linux, let’s first go through the basic introduction to Python. Python is a widely used general-purpose, high-level programming language. Python is a programming language that lets you work quickly and integrate systems more efficiently. There are two major Python versions- Python 2 and Python 3. Both are quite different.

Similar Reads

Getting Started with Python

Python is a lot easier to code and learn. Python programs can be written on any plain text editor like Notepad, Notepad++, or anything of that sort. One can also use an online IDE for writing Python codes or can even install one on their system to make it more feasible to write these codes because IDEs provide a lot of features like intuitive code editor, debugger, compiler, etc. To begin with, writing Python Codes and performing various intriguing and useful operations, one must have Python installed on their System....

Check if Python already exists

Most of the Linux OS has Python pre-installed. To check if your device is pre-installed with Python or not, just go to the terminal using Ctrl+Alt+T.Now run the following command:...

Python 3.13 Installation in Linux

Step 1: Updating and Upgrading Operating System...

Install Python on Linux – FAQs

How can I check if Python is already installed on my Linux system?...

Conclusion

Getting the latest Python3 version up and running on Linux like Ubuntu involves a few easy steps. First, you update the system packages. Then, you add the deadsnakes PPA repository to access the newest Python releases. After that, you can simply install the desired Python3 version using the apt package manager. Finally, you download and install the pip package installer for the specific Python3 version you installed. Once you verify that both Python3 and pip are installed correctly, your system is ready to start using Python3 for coding, scripting, or running Python applications. Following these straightforward steps allows you to quickly set up the latest Python3 environment on your Linux machine....

Contact Us