A tweet reads:

Don't use easy_install, unless you like stabbing yourself in the face. Use pip.

Why use pip over easy_install? Doesn't the fault lie with PyPI and package authors mostly? If an author uploads crap source tarball (eg: missing files, no setup.py) to PyPI, then both pip and easy_install will fail. Other than cosmetic differences, why do Python people (like in the above tweet) seem to strongly favor pip over easy_install?

(Let's assume that we're talking about easy_install from the Distribute package, that is maintained by the community)

link|improve this question

69% accept rate
5  
Before I saw this question I answered an unrelated one by saying "don't use easy_install, use pip". Now I'm wondering why I said that... – Daniel Roseman Jul 10 '10 at 19:07
5  
I still run into packages that cause pip to fail but easy_install handles just fine, so I'm curious about this as well. – kwatford Jul 11 '10 at 1:03
pyobjc-core is an example of a package that works with easy_install but not with pip. – Marc Abramowitz Apr 14 '11 at 21:16
feedback

5 Answers

up vote 107 down vote accepted

From Ian Bicking's own introduction to pip:

  • All packages are downloaded before installation. Partially-completed installation doesn’t occur as a result.
  • Care is taken to present useful output on the console.
  • The reasons for actions are kept track of. For instance, if a package is being installed, pip keeps track of why that package was required.
  • Error messages should be useful.
  • The code is relatively concise and cohesive, making it easier to use programmatically.
  • Packages don’t have to be installed as egg archives, they can be installed flat (while keeping the egg metadata).
  • Native support for other version control systems (Git, Mercurial and Bazaar)
  • Uninstallation of packages.
  • Simple to define fixed sets of requirements and reliably reproduce a set of packages.
link|improve this answer
12  
The "error messages" advantage is huge, especially for newer users. Easy-install is famous for spitting out dozens of what look like fatal errors, only to have wound up doing the install successfully anyway, which makes it difficult to use until you learn to ignore most everything it says. Pip simply omits saying those things in the first place. – Brandon Rhodes Oct 6 '10 at 20:47
1  
I find it really silly that pip is not installable via easy_install pip. Also to make the transition easier, the hidden instruction of downloading the pip installer is faulty because the web server certificate cannot be verified. – Sorin Sbarnea Dec 14 '11 at 17:16
3  
I install pip via easy_install pip all the time, and in fact I did so well before the timestamp on that comment. I'm not sure what @sorin is referring to. – Glyph Mar 25 at 9:44
feedback

Two reasons, there may be more:

  1. pip provides an uninstall command

  2. if an installation fails in the middle, pip will leave you in a clean state.

link|improve this answer
feedback

Another—as of yet unmentioned—reason for favoring pip is because it is the new hotness and will continue to be used in the future.

The infographic below—from the Current State of Packaging section in the The Hitchhiker's Guide to Packaging v1.0—shows that setuptools/easy_install will go away in the future.

enter image description here

Here's another infographic from distribute's documentation showing that setuptools and easy_install will be replaced by the new hotness—distribute and pip.

enter image description here

link|improve this answer
4  
Infographics FTW – WineSoaked Mar 19 '11 at 17:00
5  
OTOH, the second graphic has been outdated for a year. distribute will reach end-of-life and be superseded by distutils2 (which will also be in the Python standard library starting with 3.3). A basic installer named pysetup is provided as part or distutils2, and pip will continue to provide additional features on top of distutils2 in the future. – Éric Araujo Oct 10 '11 at 14:58
2  
omg thank you so much. i have been confused by python packaging for years and it is heartening to see a semi-authoritative path forward. – aaron Dec 28 '11 at 5:36
1  
@ÉricAraujo the second graphic is not outdated yet. It will be in the future, when distutils2 has actually been implemented, but that has not happened yet. – Glyph Mar 25 at 9:46
feedback

pip won't install binary packages and isn't well tested on Windows.

As Windows doesn't come with a compiler by default pip often can't be used there. easy_install can install binary packages for Windows.

link|improve this answer
2  
Interesting, I never thought of that. pip also doesn't support the setuptools "extras" features that is used by the Zope folks at least. – Sridhar Ratnakumar Jul 11 '10 at 18:22
Is that an indication of needing a gcc environment on windows, rather than insisting pip installs pre-built binaries? – WineSoaked Mar 19 '11 at 17:01
6  
The "right" compiler to use for Windows is Visual Studio (2008 i believe for recent versions of Python). Installing this, even the free version, is a hassle. The normal way of installing C extensions on Windows is from pre-compiled binaries. easy_install supports this, pip doesn't. – fuzzyman Mar 23 '11 at 10:59
You can use gcc on Windows through mingw32 and configuring distutils to use it. Because of the C runtime mismatch not everything will work with this (file descriptors will be different for example). – fuzzyman Mar 23 '11 at 11:01
1  
This is the primary reasons why I still use easy_install. – Randy Syring Jan 12 at 19:05
feedback

REQUIREMENTS files.

Seriously, I use this in conjunction with virtualenv every day.

link|improve this answer
Could you elaborate? – endolith Mar 6 at 16:31
I mean write a more elaborate answer. Links are not answers. – endolith Mar 7 at 18:56
feedback

Your Answer

 
or
required, but never shown

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