Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- env http_proxy= https_proxy= no_proxy= PIP_FIND_LINKS=file:///opt/stack/.wheelhouse /opt/stack/requirements/.venv/bin/pip install --help
- Usage:
- pip install [options] <requirement specifier> [package-index-options] ...
- pip install [options] -r <requirements file> [package-index-options] ...
- pip install [options] [-e] <vcs project url> ...
- pip install [options] [-e] <local project path> ...
- pip install [options] <archive url/path> ...
- Description:
- Install packages from:
- - PyPI (and other indexes) using requirement specifiers.
- - VCS project urls.
- - Local project directories.
- - Local or remote source archives.
- pip also supports installing from "requirements files", which provide
- an easy way to specify a whole environment to be installed.
- Install Options:
- -e, --editable <path/url> Install a project in editable mode (i.e. setuptools "develop mode") from a local project path or a VCS url.
- -r, --requirement <file> Install from the given requirements file. This option can be used multiple times.
- -b, --build <dir> Directory to unpack packages into and build in.
- -t, --target <dir> Install packages into <dir>. By default this will not replace existing files/folders in <dir>. Use --upgrade to replace existing packages in <dir> with new versions.
- -d, --download <dir> Download packages into <dir> instead of installing them, regardless of what's already installed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement