Skip to content

Python Installation on Linux

The installation process for Python on Linux varies depending on your distribution. Most distributions come with Python pre-installed, but you might want to install a newer version or development headers.

Debian/Ubuntu

Open your terminal and run:

bash
sudo apt update
sudo apt install python3 python3-pip python3-dev

Fedora/CentOS/RHEL

Open your terminal and run:

bash
sudo dnf install python3 python3-pip python3-devel

Arch Linux

Open your terminal and run:

bash
sudo pacman -S python python-pip