Is there a way to configure easy_install to avoid having to download the files again when an installation fails?

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

pip (http://pypi.python.org/pypi/pip/) is a drop-in replacement for the easy_install tool and can do that.

Just run easy_install pip and set an environment variable PIP_DOWNLOAD_CACHE to the path you want pip to store the files. Note that the cache won't work with dependencies that checkout from a source code repository (like svn/git/hg/bzr).

Then use pip install instead of easy_install

link|improve this answer
2  
One thing to note is pip cant install binaries(_.egg files_). This is crucial on windows platforms. – None-da May 10 '11 at 9:09
feedback

Your Answer

 
or
required, but never shown

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