liyang85
6/13/2017 - 7:13 AM

How to Install Pip on CentOS 7

How to Install Pip on CentOS 7

# copy from https://www.liquidweb.com/kb/how-to-install-pip-on-centos-7/

# First, we’ll install the EPEL repository
yum install epel-release

# As a matter of best practice we’ll update our packages:
yum -y update
yum -y install python-pip

# Check the version of Pip that is installed:
# Which should yield something similar to:
# pip 9.0.1 from /usr/lib/python2.7/site-packages (python 2.7)
pip -V