4

It appears that pip now does automated caching of wheels:

http://pip.readthedocs.org/en/stable/reference/pip_install/#wheel-cache

I'm trying to collect wheels to create an installer for a custom learning setup (ipython3 notebook, etc), however, it appears that the cache uses a unreadable cache scheme.

Is there an easy way that the pip wheel cache can be dumped to the wheel files?

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
monkut
  • 42,176
  • 24
  • 124
  • 155

1 Answers1

4

Use --download (or -d) option:

$ pip install package --download /tmp

Above command will download the wheel into /tmp directory (uses cache if the wheel is already downloaded)

falsetru
  • 357,413
  • 63
  • 732
  • 636