pip

>Usage

The pip command is used to install, manage, and uninstall Python packages from the Python Package Index and other indexes. It is the default package manager for Python.

It also known by Python 3's alias pip3.

>Synopsis

pip [command] [option]

>Commands

install

The install command installs a Python package.

Example:

Dots

install

> pip install requests

uninstall

The uninstall command removes a Python package.

Example:

Dots

uninstall

> pip uninstall requests

list

The list command shows all installed Python packages.

Example:

Dots

list

> pip list


Package Version
---------- -------
altgraph 0.17.2
future 0.18.2
pip 21.2.4
setuptools 58.0.4

>Quiz

Progress: Question ? out of ?

Question Title

Page written by Agon Rysha