2025-03-14 21:59:59 -06:00
|
|
|
# pip
|
|
|
|
|
|
|
|
|
|
> Python package manager.
|
|
|
|
|
> Some subcommands such as `install` have their own usage documentation.
|
|
|
|
|
> More information: <https://pip.pypa.io>.
|
|
|
|
|
|
|
|
|
|
- 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:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`pip install {{[-U|--upgrade]}} {{package}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Uninstall a package:
|
|
|
|
|
|
|
|
|
|
`pip uninstall {{package}}`
|
|
|
|
|
|
|
|
|
|
- Save installed packages to file:
|
|
|
|
|
|
|
|
|
|
`pip freeze > {{requirements.txt}}`
|
|
|
|
|
|
|
|
|
|
- Show installed package info:
|
|
|
|
|
|
|
|
|
|
`pip show {{package}}`
|
|
|
|
|
|
|
|
|
|
- Install packages from a file:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`pip install {{[-r|--requirement]}} {{requirements.txt}}`
|