Search code examples
pippypipython-packaging

Does pip only use PyPI or does it use other domains to find packages?


I know that by default, pip uses PyPI to look for packages. I would like to know if there are other domains other than PypI that pip uses.


Solution

  • PIP Can install from

    • PyPI
    • VCS project URL
    • Local project directories
    • Local or remote source archives

    to run from a local passage you can input pip install /opt/mypackage

    Finally, run pip install --help to see all installation options