Home > Article > Backend Development > How to install pip on linux
How to install pip on Linux: 1. Use the package manager to install pip, open the terminal, enter the corresponding command according to the required package manager to update the software package list, and then enter the corresponding command according to the package management version To install pip, finally enter the "pip3 --version" command to verify whether pip is successfully installed; 2. Use the source code to install pip. First ensure that Python development tools and libraries have been installed, then download the latest pip source code package and run pip Install the script and finally verify whether pip is installed successfully.
#The operating system of this tutorial: linux6.4.3 system, Dell G3 computer.
There are many ways to install pip on Linux, the following are two common methods:
1 .Open a terminal.
2. Enter the following command to update the package list (use the package manager for your Linux distribution):
For Debian-based Distros (like Ubuntu):
sudo apt update
For Red Hat-based distributions (like CentOS or Fedora):
sudo yum update
For Arch-based distributions (like Manjaro):
sudo pacman -Syu
3. Enter the following command to install pip (use the package manager appropriate for your Python version):
Ubuntu
sudo apt install python3-pip
CentOS/Fedora
sudo yum install python3-pip
Manjaro
sudo pacman -S python-pip
4. Verify that pip is successfully installed. Enter the following command:
pip3 --version
1. Make sure that Python development tools and libraries have been installed. Enter the following command to install them:
sudo apt-get install python-dev python3-dev build-essential
2. Download the latest pip source code package. Open a terminal and navigate to the download directory. Then, use the following command to download the latest pip source code package:
wget https://bootstrap.pypa.io/get-pip.py
3. Run the pip installation script. Enter the following command to run the pip installation script:
sudo python get-pip.py sudo python3 get-pip.py
4. Verify that pip is successfully installed. Enter the following command:
pip --version pip3 --version
The above is the detailed content of How to install pip on linux. For more information, please follow other related articles on the PHP Chinese website!