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.
- KVM based dev servers for developers
- Scalable to enterprise cloud level
- Pay-as-you-go, per-minute billing
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 updateInstall the EPEL repository:
sudo yum install epel-releaseInstall Pip:
sudo yum install python-pipThen install the wheel package:
sudo yum install python-wheelUsing Pip
Use install to use Pip to install a Python package:
pip install example-packageUse upgrade to upgrade an installed Python package:
pip upgrade example-packageUse uninstall to remove an installed Python package:
pip uninstall example-packageUse show to get information about an installed Python package, including its location and included files:
pip show example-package
