pip is a package manager for managing python packages

pip commands

pip is a package manager for managing python packages in a application

pip command package options

Install a packaeg

pip install command installs the package into your project.

pip install package

To install a specific version

pip install package==version

Uninstall a package

pip uninstall package

Display list of packages

pip list

Display information about a package

pip show package

For example, to display information about pip:

E:\>pip show pip
Name: pip
Version: 23.2.1
Summary: The PyPA recommended tool for installing Python packages.
Home-page: https://pip.pypa.io/
Author: The pip developers
Author-email: [email protected]
License: MIT
Location: C:\Python312\Lib\site-packages
Requires:
Required-by:

Virtual Environments commands