mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
17 lines
350 B
Markdown
17 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}}`
|