Article

Table of Contents
Theme:
Was this article helpful?

2  out of  2 found this helpful

Try Vultr Today with

$50 Free on Us!

Want to contribute?

You could earn up to $600 by adding new articles.

How To Install Pip on Linux

Last Updated: Sun, Oct 18, 2015
Linux Guides Python Server Apps

Pip is a tool for managing Python packages. Using a package manager allows for efficient management of your server. This tutorial explains how to install Pip on various Linux distros.

Ubuntu

This applies to Ubuntu versions:

  • Ubuntu 20.04

  • Ubuntu 19.10

  • Ubuntu 18.04

  • Ubuntu 16.04

  • Ubuntu 14.04

1. Update repository list

Update your repository list to make sure the installation will complete successfully:

# apt-get update

2. Install Pip

After you have updated the repository list, you can install Pip using apt-get:

# apt-get install python-pip

3. Confirm installation

Now confirm Pip has been installed successfully by executing pip -v on the command line. If you see a version printed on the screen, the installation was successful.

CentOS

1. Update repository list

Update your repository list with yum:

yum update

2. Install Pip

We can now install Pip:

yum -y install python-pip

3. Confirm installation

Check your version by executing pip -v. If this returns a version, Pip has successfully been installed.

Want to contribute?

You could earn up to $600 by adding new articles.