commands.sh
⌘K

pip

all

Python package manager. Some subcommands such as `install` have their own usage documentation.

More info →

Options (2)

-U, --upgradeboolean

Upgrade a package

Example: pip install {{[-U|--upgrade]}} {{package}}
-r, --requirementboolean

Install packages from a file

Example: pip install {{[-r|--requirement]}} {{requirements.txt}}

Examples (8)

Install a package (see `pip install` for more install examples)

pip install package

Install a package to the user's directory instead of the system-wide default location

pip install --user package

Upgrade a package

pip install [-U|--upgrade] package

Uninstall a package

pip uninstall package

Save installed packages to file

pip freeze > requirements.txt

List installed packages

pip list

Show installed package info

pip show package

Install packages from a file

pip install [-r|--requirement] requirements.txt
made by @shridhargupta | data from tldr-pages