1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

pip wheel warning when wheels are already available on pypi

This commit is contained in:
Marcus Smith 2014-01-25 11:32:22 -08:00
parent 1055f42c1f
commit 6d25e12dc8
2 changed files with 17 additions and 0 deletions

View file

@ -124,6 +124,15 @@ To build wheels for your requirements and all their dependencies to a local dire
pip wheel --wheel-dir=/local/wheels -r requirements.txt
.. warning::
Currently, when ``pip wheel`` finds a wheel for one of your requirements
already on PyPI, it does not rebuild, and it does not place the file in your
wheelhouse dir. There is an issue open to change this
(https://github.com/pypa/pip/issues/1310)
And *then* to install those requirements just using your local directory of wheels (and not from PyPI):
::

View file

@ -382,6 +382,14 @@ Description
.. pip-command-description:: wheel
.. warning::
Currently, when ``pip wheel`` finds a wheel for one of your requirements
already on PyPI, it does not rebuild, and it does not place the file in your
wheelhouse dir. There is an issue open to change this
(https://github.com/pypa/pip/issues/1310)
Options
*******