Why is pip not listed in easy_install on CentOS 6? Where to get it?

28,317

Solution 1

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

Solution 2

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

Share:
28,317

Related videos on Youtube

Tamara Wijsman
Author by

Tamara Wijsman

In my free time I visit Stack Exchange to help out people with their questions and help maintain the community. Located in Belgium, I have studied Computer Science at the University of Antwerp and became a Master in Software Engineering. When I think a post can be improved I will try to do so by fixing grammatical or spelling errors, clarifying meaning without changing it, correcting minor mistakes, adding related resources or links. For the less obvious things of those I will leave a note in the edit, click on the date to see this. I will only edit content in posts once, and let the author or other users be free to choose to rollback; when there are opposing views, we can raise this to meta to let the majority decide which revision of the post they want. This will be done with respect of the original author and when I'm sure enough that it would only improve the post. Have a nice day! :)

Updated on September 18, 2022

Comments

  • Tamara Wijsman
    Tamara Wijsman over 1 year

    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.

  • Adam K Dean
    Adam K Dean almost 11 years
    python-pip is what I was looking for. Thanks!