7

I am trying to install pip for python on CentOS 6. I thought of installing it through easy_install but it is not there. I tried to find easy_install with find command, but no luck. I tried to re-install python with yum and still not able to find easy_install.

2 Answers 2

16

In some distribution easy_install not come with the default python.

So, you to download it and install.

#wget http://peak.telecommunity.com/dist/ez_setup.py
#python ez_setup.py 

After installing the ez_setup.py, you can find the easy_install, using that you can install pip module as follow.

#easy_install pip
0
9

Both setuptools (python-setuptools) and pip (python-pip) are in EPEL.

1
  • python-pip is what I was looking for. Thanks! Commented Jun 20, 2013 at 18:50

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .