Usage:   
  C:\Python314\python.exe -m pip download [options] <requirement specifier> 
[package-index-options] ...
  C:\Python314\python.exe -m pip download [options] -r <requirements file> 
[package-index-options] ...
  C:\Python314\python.exe -m pip download [options] <vcs project url> ...
  C:\Python314\python.exe -m pip download [options] <local project path> ...
  C:\Python314\python.exe -m pip download [options] <archive url/path> ...

Description:
  Download packages from:
  
  - PyPI (and other indexes) using requirement specifiers.
  - VCS project urls.
  - Local project directories.
  - Local or remote source archives.
  
  pip also supports downloading from "requirements files", which provide
  an easy way to specify a whole environment to be downloaded.

Download Options:
  -c, --constraint <file>     Constrain versions using the given constraints
                              file. This option can be used multiple times.
  --build-constraint <file>   Constrain build dependencies using the given
                              constraints file. This option can be used
                              multiple times.
  -r, --requirement <file>    Install from the given requirements file. The
                              file or URL can be in pip's requirements.txt
                              format, or pylock.toml format. pylock.toml
                              support is experimental. This option can be used
                              multiple times.
  --requirements-from-script <file>
                              Install dependencies of the given script file as
                              defined by PEP 723 inline metadata.
  --no-deps                   Don't install package dependencies.
  --only-deps                 Take only the dependencies of the provided
                              requirements into account, not the requirements
                              themselves. Cannot be used in combination
                              with --no-
                              deps,
                              --group, --requirement,
                              or --requirements-from-
                              script. No user-supplied requirements will be
                              handled, even if they were dependencies of other
                              user-supplied requirements.
  --src <dir>                 Directory to check out editable projects into.
                              The default in a virtualenv is "<venv
                              path>/src". The default for global installs is
                              "<current dir>/src".
  --require-hashes            Require a hash to check each requirement
                              against, for repeatable installs. This option is
                              implied when any package in a requirements file
                              has a --hash option.
  --no-require-hashes         Do not automatically enable
                              --require-hashes when encountering a
                              requirement with hashes.
  --progress-bar <progress_bar>
                              Specify whether the progress bar should be used.
                              In 'auto' mode, --quiet
                              will suppress all progress bars. [auto, on,
                              off, raw] (default: auto)
  --no-build-isolation        Disable isolation when building a modern source
                              distribution. Build dependencies specified by
                              PEP 518 must be already installed if this option
                              is used.
  --check-build-dependencies  Check the build dependencies.
  --ignore-requires-python    Ignore the Requires-Python information.
  -d, --dest <dir>            Download packages into <dir>.
  --platform <platform>       Only use wheels compatible with <platform>.
                              Defaults to the platform of the running system.
                              Use this option multiple times to specify
                              multiple platforms supported by the target
                              interpreter.
  --python-version <python_version>
                              The Python interpreter version to use for wheel
                              and "Requires-Python" compatibility checks.
                              Defaults to a version derived from the running
                              interpreter. The version can be specified using
                              up to three dot-separated integers (e.g. "3" for
                              3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-
                              minor version can also be given as a string
                              without dots (e.g. "37" for 3.7.0).
  --implementation <implementation>
                              Only use wheels compatible with Python
                              implementation <implementation>, e.g. 'pp',
                              'jy', 'cp',  or 'ip'. If not specified, then the
                              current interpreter implementation is used.  Use
                              'py' to force implementation-agnostic wheels.
  --abi <abi>                 Only use wheels compatible with Python abi
                              <abi>, e.g. 'pypy_41'. If not specified, then
                              the current interpreter abi tag is used. Use
                              this option multiple times to specify multiple
                              abis supported by the target interpreter.
                              Generally you will need to
                              specify
                              --implementation,
                              --platform, and --python-
                              version when using this option.
  --group <[path:]group>     Install a named dependency-group from a
                              "pyproject.toml" file. If a path is given, the
                              name of the file must be "pyproject.toml".
                              Defaults to using "pyproject.toml" in the
                              current directory.
  --no-clean                  Don't clean up build directories.

Package Selection Options:
  --pre                       Include pre-release and development versions. By
                              default, pip only finds stable versions.
  --all-releases <release_control>
                              Allow all release types (including pre-releases)
                              for a package. Can be supplied multiple times,
                              and each time adds to the existing value.
                              Accepts either ":all:" to allow pre-releases for
                              all packages, ":none:" to empty the set (notice
                              the colons), or one or more package names with
                              commas between them (no colons). Cannot be used
                              with --pre.
  --only-final <release_control>
                              Only allow final releases (no pre-releases) for
                              a package. Can be supplied multiple times, and
                              each time adds to the existing value. Accepts
                              either ":all:" to disable pre-releases for all
                              packages, ":none:" to empty the set, or one or
                              more package names with commas between them.
                              Cannot be used with --pre.
  --no-binary <format_control>
                              Do not download binary packages. Cached binary
                              packages may still be used. Can be supplied
                              multiple times, and each time adds to the
                              existing value. Accepts either ':all:' to
                              disable all binary packages, ':none:' to empty
                              the set (notice the colons), or one or more
                              package names with commas between them (no
                              colons). Note that some packages are tricky to
                              compile and may fail to install when this option
                              is used on them.
  --only-binary <format_control>
                              Do not use source packages. Can be supplied
                              multiple times, and each time adds to the
                              existing value. Accepts either ":all:" to
                              disable all source packages, ":none:" to empty
                              the set, or one or more package names with
                              commas between them. Packages without binary
                              distributions will fail to install when this
                              option is used on them.
  --prefer-binary             Prefer binary packages over source packages,
                              even if the source packages are newer.

Package Index Options:
  -i, --index-url <url>       Base URL of the Python Package Index (default
                              https://pypi.org/simple). This should point to a
                              repository compliant with PEP 503 (the simple
                              repository API) or a local directory laid out in
                              the same format.
  --extra-index-url <url>     Extra URLs of package indexes to use in addition
                              to --index-url. Should
                              follow the same rules as
                              --index-url.
  --no-index                  Ignore package index (only looking
                              at --find-links URLs
                              instead).
  --refresh-package <refresh_package>
                              Refresh package index information for the given
                              packages instead of using cached responses.
                              Accepts ':all:' to apply to all packages, or a
                              comma-separated list of package names.
  -f, --find-links <url>      If a URL or path to an html file, then parse for
                              links to archives such as sdist (.tar.gz) or
                              wheel (.whl) files. If a local path or file://
                              URL that's a directory, then look for archives
                              in the directory listing. Links to VCS project
                              URLs are not supported.
  --uploaded-prior-to <datetime_or_duration>
                              Only consider packages uploaded prior to the
                              given value. Accepts an ISO 8601 datetime (e.g.,
                              '2023-01-01T00:00:00Z', uses local timezone if
                              none specified) or a duration in days (e.g.,
                              'P3D' for packages uploaded at least 3 days
                              ago). Only effective when using indexes that
                              provide upload-time metadata.

General Options:
  -h, --help                  Show help.
  --debug                     Let unhandled exceptions propagate outside the
                              main subroutine, instead of logging them to
                              stderr.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  --require-virtualenv        Allow pip to only run in a virtual environment;
                              exit with an error otherwise.
  --python <python>           Run pip with the specified Python interpreter.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be
                              used up to 3 times (corresponding to WARNING,
                              ERROR, and CRITICAL logging levels).
  --log <path>                Path to a verbose appending log.
  --no-input                  Disable prompting for input.
  --keyring-provider <keyring_provider>
                              Enable the credential lookup via the keyring
                              library if user input is allowed. Specify which
                              mechanism to use [auto, disabled, import,
                              subprocess]. (default: auto)
  --proxy <proxy>             Specify a proxy in the form
                              scheme://[user:passwd@]proxy.server:port.
  --no-proxy-env              Do not read proxy configuration from environment
                              variables.
  --retries <retries>         Maximum attempts to establish a new HTTP
                              connection. (default: 5)
  --timeout <sec>             Set the socket timeout (default 15 seconds).
  --exists-action <action>    Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host <hostname>   Mark this host or host:port pair as trusted,
                              even though it does not have valid or any HTTPS.
  --cert <path>               Path to PEM-encoded CA certificate bundle. If
                              provided, overrides the default. See 'SSL
                              Certificate Verification' in pip documentation
                              for more information.
  --client-cert <path>        Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir <dir>           Store the cache data in <dir>.
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-
                              index.
  --no-color                  Suppress colored output.
  --use-feature <feature>     Enable new functionality, that may be backward
                              incompatible.
  --use-deprecated <feature>  Enable deprecated functionality, that will be
                              removed in the future.
  --resume-retries <resume_retries>
                              Maximum attempts to resume or restart an
                              incomplete download. (default: 5)
