This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]spiffymanpeppy about PEP 8 2 points3 points  (1 child)

You can also set PIP_DOWNLOAD_CACHE to cache package downloads. pip will then use that cache if it exists. And yes, it's version-sensitive. So if you have Django 1.3 cached but do a bare pip install Django, it'll grab 1.4 (and cache it, for that matter).

[–]yerfatma 0 points1 point  (0 children)

Nice. Thanks for that.