���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /usr/share/doc/python2-pip-8.1.2/docs/reference/ |
.. _`pip download`: pip download ------------ .. contents:: Usage ***** .. pip-command-usage:: download Description *********** .. pip-command-description:: download Overview ++++++++ ``pip download`` replaces the ``--download`` option to ``pip install``, which is now deprecated and will be removed in pip 10. ``pip download`` does the same resolution and downloading as ``pip install``, but instead of installing the dependencies, it collects the downloaded distributions into the directory provided (defaulting to the current directory). This directory can later be passed as the value to ``pip install --find-links`` to facilitate offline or locked down package installation. Options ******* .. pip-command-options:: download .. pip-index-options:: Examples ******** 1. Download a package and all of its dependencies :: $ pip download SomePackage $ pip download -d . SomePackage # equivalent to above $ pip download --no-index --find-links=/tmp/wheelhouse -d /tmp/otherwheelhouse SomePackage