1PIP-UNINSTALL(1) pip PIP-UNINSTALL(1)
2
3
4
6 pip-uninstall - description of pip uninstall command
7
8 IMPORTANT:
9 Did this article help?
10
11 We are currently doing research to improve pip's documentation and
12 would love your feedback. Please email us and let us know why you
13 came to this page and what on it helped you and what did not. (‐
14 Read more about this research)
15
17 Uninstall packages.
18
19 pip is able to uninstall most installed packages. Known exceptions are:
20
21 • Pure distutils packages installed with python setup.py install, which
22 leave behind no metadata to determine what files were installed.
23
24 • Script wrappers installed by python setup.py develop.
25
26
28 python -m pip uninstall [options] <package> ...
29 python -m pip uninstall [options] -r <requirements file> ...
30
32 -r, --requirement <file>
33 Uninstall all the packages listed in the given requirements
34 file. This option can be used multiple times.
35
36 -y, --yes
37 Don't ask for confirmation of uninstall deletions.
38
39
40 IMPORTANT:
41 Did this article help?
42
43 We are currently doing research to improve pip's documentation and
44 would love your feedback. Please email us and let us know:
45
46 1. What problem were you trying to solve when you came to this page?
47
48 2. What content was useful?
49
50 3. What content was not useful?
51
53 pip developers
54
56 2008-2021, PyPA
57
58
59
60
6121.0 May 17, 2021 PIP-UNINSTALL(1)