mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 17:42:07 +02:00
16 lines
350 B
Markdown
16 lines
350 B
Markdown
# pip uninstall
|
|
|
|
> Uninstall Python packages.
|
|
> More information: <https://pip.pypa.io>.
|
|
|
|
- Uninstall a package:
|
|
|
|
`pip uninstall {{package_name}}`
|
|
|
|
- Uninstall packages listed in a specific file:
|
|
|
|
`pip uninstall --requirement {{path/to/requirements.txt}}`
|
|
|
|
- Uninstall package without asking for confirmation:
|
|
|
|
`pip uninstall --yes {{package_name}}`
|