Information


Install


pip

pip is the package manager for Python. It is used to install and manage software packages written in Python. pip is included with most Python distributions, and it can be installed separately for other distributions.

To use pip, you need to know the name of the package you want to install. You can find the name of the package by searching the Python Package Index (PyPI). Once you know the name of the package, you can install it with the following command:

pip install <$package_name>

Replacing the syntax of <$package_name> with the package you would like to install from the PyPI libraries.

In this example, we will look into the install of the requests package via pip.

pip install requests