Skip to content

Installing pip/setuptools/wheel with Linux Package Managers

Fedora

sudo dnf install python3-pip python3-wheel

To learn more about Python in Fedora, please visit the official Fedora docs, Python Classroom or Fedora Loves Python.

Debian/Ubuntu and derivatives

Firstly, update and refresh repository lists by running this command:

sudo apt update
sudo apt install python3-venv python3-pip

warning

Recent Debian/Ubuntu versions have modified pip to use the “User Scheme” by default, which is a significant behavior change that can be surprising to some users.

Arch Linux

sudo pacman -S python-pip