mirror of https://github.com/CrimsonTome/tldr.git
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}}`
|