Advertisement
Guest User

Untitled

a guest
Sep 6th, 2015
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. env http_proxy= https_proxy= no_proxy= PIP_FIND_LINKS=file:///opt/stack/.wheelhouse /opt/stack/requirements/.venv/bin/pip install --help
  2.  
  3. Usage:
  4. pip install [options] <requirement specifier> [package-index-options] ...
  5. pip install [options] -r <requirements file> [package-index-options] ...
  6. pip install [options] [-e] <vcs project url> ...
  7. pip install [options] [-e] <local project path> ...
  8. pip install [options] <archive url/path> ...
  9.  
  10. Description:
  11. Install packages from:
  12.  
  13. - PyPI (and other indexes) using requirement specifiers.
  14. - VCS project urls.
  15. - Local project directories.
  16. - Local or remote source archives.
  17.  
  18. pip also supports installing from "requirements files", which provide
  19. an easy way to specify a whole environment to be installed.
  20.  
  21. Install Options:
  22. -e, --editable <path/url> Install a project in editable mode (i.e. setuptools "develop mode") from a local project path or a VCS url.
  23. -r, --requirement <file> Install from the given requirements file. This option can be used multiple times.
  24. -b, --build <dir> Directory to unpack packages into and build in.
  25. -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.
  26. -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