pip
on CentOS 7 for Python 2.xOn CentOS 7, you have to install setup tools first, and then use that to install pip
, as there is no direct package for it.python
sudo yum install python-setuptools sudo easy_install pip
pip
on CentOS 7 for Python 3.xAssuming you installed Python 3.4 from EPEL, you can install Python 3's setup tools and use it to install pip
.ui
# First command requires you to have enabled EPEL for CentOS7 sudo yum install python34-setuptools sudo easy_install pip