Python PIP

PIP is a package manager for Python, which allows you to install and manage additional libraries and dependencies that are not included in the standard Python library.


Why Use PIP?

PIP simplifies the process of installing and managing Python software packages. It is essential for accessing the vast ecosystem of Python packages available in the Python Package Index (PyPI).

Tutorials dojo strip




How to Install PIP

If you are using Python 3.4+ or Python 2.7.9+, PIP comes pre-installed. If you need to install it manually, you can do so using the following command in your terminal:




Basic PIP Commands

Installing a Package

To install a package, use the command:


For example, to install the requests library:




Uninstalling a Package

To uninstall a package, use the command:


For example, to uninstall the requests library:




Listing Installed Packages

To see a list of all installed packages, use:




Searching for Packages

To search for a specific package in PyPI, use:




Showing Package Information

To display detailed information about an installed package, use:




Python PIP Example Usage

  1. Install a Package:
  1. Uninstall a Package:
  1. List all Installed Packages:
  1. Search for a Package:
  1. Show Package Information:




Tutorials dojo strip