mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 15:43:04 +00:00
22 lines
433 B
Plaintext
22 lines
433 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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 --requirement {{path/to/requirements.txt}}`
|
|
|
|
- Uninstall package without asking for confirmation:
|
|
|
|
`pip uninstall --yes {{package}}`
|