The python software pip is a replacement for *easy_install*. (Edit: or let's say a wrapper for easy_install, see civilian's comment below this question). But I have to install pip using easy_install on Windows. Is there a better way?

Edit:

This also seems to work:

  1. Download the last easy installer for Windows that fits your installed python version: (download the .exe at the bottom of http://pypi.python.org/pypi/setuptools ). Install it.
  2. Add c:\Python2x\Scripts to the Windows path (replace Python2x with the correct directory)
  3. Open a new (!) DOS prompt. From there run easy_install pip

For the 64 bit operating system see this answer below: http://stackoverflow.com/a/9038397/362951

link|improve this question

4  
That is just ironic! I was going to ask the same question. SOME replacement it is - if it still has to use easy_install!!! Hahah – drozzy Feb 3 '11 at 15:07
1  
@drozzy - can you show us any installer that installs itself - the very first time - with no help from other programs? – LarsH Apr 21 '11 at 20:20
2  
While I agree with you, all windows programs install without the need to install the installer. – drozzy Apr 22 '11 at 3:16
@drozzy- Not necessarily true. If you have a fresh version of Windows (say, Windows 7), installing some programs require you to download Windows Installer 3.1 or whatever the newest version is. Of course, to install that, you need an older version that was built in... same situation here. – DMan Jul 17 '11 at 0:15
3  
From PyCon 2011: blip.tv/pycon-us-videos-2009-2010-2011/… The dirty secret is that pip is a wrapper for easy_install :) – Civilian Sep 23 '11 at 23:18
feedback

5 Answers

up vote 72 down vote accepted

As you mentioned pip doesn't include an independent installer, but you can install it easily with its predecessor easy_install.

So:

  1. Download the last pip version from here: http://pypi.python.org/pypi/pip#downloads
  2. Uncompress it
  3. Download the last easy installer for Windows: (download the .exe at the bottom of http://pypi.python.org/pypi/setuptools ). Install it.
  4. go to the uncompressed pip directory and: python setup.py install
  5. Add your python c:\Python2x\Scripts to the path

You are done.

Now you can use pip install package to easily install packages as in Linux :)

link|improve this answer
When run the command "python setup.py install", if you got "error: pip.egg-info\PKG-INFO: Permission denied", then try to remove the read only attribute on the uncompressed pip directory. – Yoo Matsuo May 5 '11 at 4:04
3  
If you install a 64-bit version of python, setuptools will not detect your python executable. I found some binaries here that will, though (unofficial): lfd.uci.edu/~gohlke/pythonlibs – phasetwenty Jun 27 '11 at 17:18
Once I've installed pip using easy_install can I remove setuptools by pip uninstall setuptools? Is this okay or would it lead to issues later on? – Mridang Agarwalla Aug 20 '11 at 7:40
2  
Note that setuptools isn't available for python3 because it has been replaced with distribute. Also, there are now scripts that automate the installation of the required packages for you: distribute_setup.py and get-pip.py. – stevenl Sep 19 '11 at 6:15
For Win 64, you can download peak.telecommunity.com/dist/ez_setup.py. Open pythonwin as Adminstrator and execute it. After that open the windows command line also as Admin and do step 4 and 5. – powtac Dec 13 '11 at 15:09
show 2 more comments
feedback

For Windows editions of the 64 bit variety:

from the setuptools page --

Download ez_setup.py and run it; it will download the appropriate .egg file and install it for you. (Currently, the provided .exe installer does not support 64-bit versions of Python for Windows, due to a distutils installer compatibility issue

After this, you may continue with:

  1. Add c:\Python2x\Scripts to the Windows path
  2. Open a new (!) DOS prompt. From there run easy_install pip
link|improve this answer
You are a life-saver. this worked perfectly with no problem! Thanks! – Conrad.Dean Jan 29 at 5:17
Glad I could help! – AndrewPK Jan 29 at 6:24
feedback

When I have to use Windows, I use ActivePython, which automatically adds everything to your PATH and includes a package manager called PyPM which provides binary package management making it faster and simpler to install packages.

pip and easy_install aren't exactly the same thing, so there are some things you can get through pip but not easy_install and vice versa.

My recommendation is that you get ActivePython Community Edition and don't worry about the huge hassle of getting everything set up for Python on Windows. Then, you can just use pypm.

link|improve this answer
1  
It must be noted that ActivePython also includes pip and easy_install. PyPM is a binary package manger, while pip/easy_install are, essentially, source package managers. See code.activestate.com/help/faq/… – Sridhar Ratnakumar Feb 21 '11 at 18:08
Thanks, this helped me. – LarsH Apr 21 '11 at 20:19
feedback

To install pip globally on Python 2.x, easy_install appears to be the best solution as Adrián states.

However the installation instructions for pip recommend using virtualenv since every virtualenv has pip installed in it automatically. This does not require root access or modify your system Python installation.

Installing virtualenv still requires easy_install though.

link|improve this answer
feedback

Just wanted to add one more solution for those having issues installing setuptools from Windows 64-bit. The issue is discussed in this bug on python.org and is still unresolved as of the date of this comment. A simple workaround is mentioned and it works flawlessly. One registry change did the trick for me.

Link: http://bugs.python.org/issue6792#

Solution that worked for me.. Add this registry setting for 2.6+ versions of python:

 [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Python\PythonCore\2.6\InstallPath]
 @="C:\\Python26\\"

This is most likely the registry setting you will already have for Python 2.6+

 [HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.6\InstallPath]
 @="C:\\Python26\\"

Clearly, you will need to replace the 2.6 version with whatever version of python you are running.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.