pip-download
Download packages without installing them
TLDR
Download package
$ pip download [package]
Download to specific directorycopy
$ pip download -d [directory] [package]
Download specific versioncopy
$ pip download [package]==[version]
Download for specific platformcopy
$ pip download --platform [linux_x86_64] --only-binary=:all: [package]
Download from requirements filecopy
$ pip download -r requirements.txt
copy
SYNOPSIS
pip download [options] packages...
DESCRIPTION
pip download downloads packages without installing them. Downloads wheels or source distributions to a specified directory. Useful for offline installation or creating local package mirrors.
PARAMETERS
-d, --dest dir
Download directory.-r, --requirement file
Download from requirements file.--no-deps
Don't download dependencies.--only-binary format
Only download binary packages.--platform platform
Download for specific platform.--python-version version
Download for specific Python version.
SEE ALSO
pip(1), pip-install(1), pip-wheel(1)