pip3
Python 3 package installer
TLDR
Install package
$ pip3 install [package]
Install specific version$ pip3 install [package]==[version]
Upgrade package$ pip3 install --upgrade [package]
Uninstall package$ pip3 uninstall [package]
List installed packages$ pip3 list
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.
