Install and use Pip on CentOS 7

Pip is a package management system for Python. We recommend the use of Pip, as it is the officially recognized tool for installing Python packages, according to the official Python Software Foundation. Learn how to install and use Pip on Ubuntu 16.04 and CentOS 7 Cloud Servers.

Requirements

  • A Cloud Server with Ubuntu 16.04 or CentOS 7, and Python installed.

Free Cloud Server Trial from IONOS

Try out a Cloud Server for free now - test your IONOS Cloud Server for 30 days!

REST API
Unlimited traffic
VMware virtualization
Note

Python is installed and running on a Standard Linux installation by default. If your server was created with a Minimal installation, you will need to install and configure Python before you proceed.

Install Pip on CentOS 7

Update the package list:

sudo yum update

Install the EPEL repository:

sudo yum install epel-release

Install Pip:

sudo yum install python-pip

Then install the wheel package:

sudo yum install python-wheel

Using Pip

Use install to use Pip to install a Python package:

pip install example-package

Use upgrade to upgrade an installed Python package:

pip upgrade example-package

Use uninstall to remove an installed Python package:

pip uninstall example-package

Use show to get information about an installed Python package, including its location and included files:

pip show example-package
We use cookies on our website to provide you with the best possible user experience. By continuing to use our website or services, you agree to their use. More Information.