Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 251
Gilles Criton Avatar asked Oct 18 '25 15:10

Gilles Criton


1 Answers

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

like image 170
Anger Avatar answered Oct 21 '25 11:10

Anger