LinuxCommandLibrary

pip3

Python 3 package installer

TLDR

Install package

$ pip3 install [package]
copy
Install specific version
$ pip3 install [package]==[version]
copy
Upgrade package
$ pip3 install --upgrade [package]
copy
Uninstall package
$ pip3 uninstall [package]
copy
List installed packages
$ pip3 list
copy

SYNOPSIS

pip3 [command] [options] [packages...]

DESCRIPTION

pip3 is the Python 3 package installer. Functionally identical to pip but explicitly targets Python 3. On systems with both Python 2 and Python 3, pip3 ensures packages install to the Python 3 environment.

SEE ALSO

pip(1), python3(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community