2025-03-14 21:59:59 -06:00
|
|
|
# pip uninstall
|
|
|
|
|
|
|
|
|
|
> Uninstall Python packages.
|
|
|
|
|
> More information: <https://pip.pypa.io>.
|
|
|
|
|
|
|
|
|
|
- Uninstall a package:
|
|
|
|
|
|
|
|
|
|
`pip uninstall {{package}}`
|
|
|
|
|
|
|
|
|
|
- Uninstall packages listed in a specific file:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`pip uninstall {{[-r|--requirement]}} {{path/to/requirements.txt}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Uninstall package without asking for confirmation:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`pip uninstall {{[-y|--yes]}} {{package}}`
|