mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-05 07:55:24 +02:00
16 lines
358 B
Markdown
16 lines
358 B
Markdown
# pip uninstall
|
|
|
|
> Uninstall Python packages.
|
|
> More information: <https://pip.pypa.io>.
|
|
|
|
- Uninstall a package:
|
|
|
|
`pip uninstall {{package}}`
|
|
|
|
- Uninstall packages listed in a specific file:
|
|
|
|
`pip uninstall {{[-r|--requirement]}} {{path/to/requirements.txt}}`
|
|
|
|
- Uninstall package without asking for confirmation:
|
|
|
|
`pip uninstall {{[-y|--yes]}} {{package}}`
|