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:
- 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.
- Add
c:\Python2x\Scriptsto the Windows path (replace Python2x with the correct directory) - 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