Easy Tutorial
❮ Python Os Dup Python Data Structure ❯

Python3 pip

pip is the package management tool for Python, which provides functionalities for searching, downloading, installing, and uninstalling Python packages.

Software packages can also be found at https://pypi.org/.

The latest version of Python currently comes pre-installed with pip.

>

Note: pip is included with Python 2.7.9+ or Python 3.4+ versions.

If not installed, refer to: Python pip Installation and Usage.

To check if pip is already installed, use the following command:

pip --version

To download and install a package, use the following command:

pip install some-package-name

For example, to install the numpy package:

pip install numpy

We can easily remove a package using the following command:

pip uninstall some-package-name

For example, to remove the numpy package:

pip uninstall numpy

To view the packages we have installed, use the following command:

pip list
❮ Python Os Dup Python Data Structure ❯