Python Forum

Full Version: Why Pip is not listed in the official Global Python Module index?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pip comes built in with Python. That's why I was surprised to see pip not listed in the global module index[1] on official Python documentation.

Why is that the case?

[1] https://docs.python.org/3/py-modindex.html
pip is separate from python.

Most versions of python come with pip as part of the package, but not all.
for example Anaconda comes with coda as a counterpart.
Pip is a package manager/installer for Python modules/packages.
So it's a step above modules/packages,as it been used to install 3-party modules/packages.

pip are under the wings of Python Packaging Authority (PyPA).
One of the goals of PyPA:
PyPA Wrote:To improve the docs for users, including the Python Packaging User Guide, anything related to packaging on docs.python.org,
and the project docs for pip, setuptools, virtualenv, and wheel.