mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 23:02:07 +02:00
24 lines
425 B
Markdown
24 lines
425 B
Markdown
# pip
|
|
|
|
> Python package manager.
|
|
> More information: <https://pip.pypa.io>.
|
|
|
|
- Install a package (see `pip install` for more install examples):
|
|
|
|
`pip install {{package_name}}`
|
|
|
|
- Upgrade a package:
|
|
|
|
`pip install -U {{package_name}}`
|
|
|
|
- Uninstall a package:
|
|
|
|
`pip uninstall {{package_name}}`
|
|
|
|
- Save installed packages to file:
|
|
|
|
`pip freeze > {{requirements.txt}}`
|
|
|
|
- Show installed package info:
|
|
|
|
`pip show {{package_name}}`
|