Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#6369 - detailed documentation for the --platform and --python-version options of the pip download command #13251

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
9 changes: 9 additions & 0 deletions docs/html/cli/pip_download.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,16 @@ constrained download requirement. If some of your dependencies are not
available as binaries, you can build them manually for your target platform
and let pip download know where to find them using ``--find-links``.

.. note::

To determine the appropriate values for ``--python-version`` and ``--platform``, you can query the target system using the following commands:

- For the Python version, use :func:`sysconfig.get_python_version() <sysconfig.get_python_version>`.
- For the platform, use :func:`packaging.tags.sys_tags() <packaging.tags.sys_tags>`.

Refer to the official Python documentation for more details:
- `sysconfig.get_python_version() <https://docs.python.org/3/library/sysconfig.html#sysconfig.get_python_version>`_
- `packaging.tags.sys_tags() <https://packaging.pypa.io/en/latest/tags.html>`_

Options
=======
Expand Down
1 change: 1 addition & 0 deletions news/6369.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Provided information about the --platform and --python-version options of the ``pip download`` command