1PIP(1) pip PIP(1)
2
3
4
6 pip - package manager for Python packages
7
9 pip <command> [options]
10
12 pip is the PyPA recommended package manager for Python packages
13
15 -h, --help
16 Show help.
17
18 --debug
19 Let unhandled exceptions propagate outside the main subroutine,
20 instead of logging them to stderr.
21
22 --isolated
23 Run pip in an isolated mode, ignoring environment variables and
24 user configuration.
25
26 -v, --verbose
27 Give more output. Option is additive, and can be used up to 3
28 times.
29
30 -V, --version
31 Show version and exit.
32
33 -q, --quiet
34 Give less output. Option is additive, and can be used up to 3
35 times (corresponding to WARNING, ERROR, and CRITICAL logging
36 levels).
37
38 --log <path>
39 Path to a verbose appending log.
40
41 --no-input
42 Disable prompting for input.
43
44 --proxy <proxy>
45 Specify a proxy in the form [user:passwd@]proxy.server:port.
46
47 --retries <retries>
48 Maximum number of retries each connection should attempt (de‐
49 fault 5 times).
50
51 --timeout <sec>
52 Set the socket timeout (default 15 seconds).
53
54 --exists-action <action>
55 Default action when a path already exists: (s)witch, (i)gnore,
56 (w)ipe, (b)ackup, (a)bort.
57
58 --trusted-host <hostname>
59 Mark this host or host:port pair as trusted, even though it does
60 not have valid or any HTTPS.
61
62 --cert <path>
63 Path to PEM-encoded CA certificate bundle. If provided, over‐
64 rides the default. See 'SSL Certificate Verification' in pip
65 documentation for more information.
66
67 --client-cert <path>
68 Path to SSL client certificate, a single file containing the
69 private key and the certificate in PEM format.
70
71 --cache-dir <dir>
72 Store the cache data in <dir>.
73
74 --no-cache-dir
75 Disable the cache.
76
77 --disable-pip-version-check
78 Don't periodically check PyPI to determine whether a new version
79 of pip is available for download. Implied with --no-index.
80
81 --no-color
82 Suppress colored output.
83
84 --no-python-version-warning
85 Silence deprecation warnings for upcoming unsupported Pythons.
86
87 --use-feature <feature>
88 Enable new functionality, that may be backward incompatible.
89
90 --use-deprecated <feature>
91 Enable deprecated functionality, that will be removed in the fu‐
92 ture.
93
94
96 pip-install(1)
97 Install packages.
98
99 pip-download(1)
100 Download packages.
101
102 pip-uninstall(1)
103 Uninstall packages.
104
105 pip-freeze(1)
106 Output installed packages in requirements format.
107
108 pip-list(1)
109 List installed packages.
110
111 pip-show(1)
112 Show information about installed packages.
113
114 pip-check(1)
115 Verify installed packages have compatible dependencies.
116
117 pip-search(1)
118 Search PyPI for packages.
119
120 pip-wheel(1)
121 Build wheels from your requirements.
122
123 pip-hash(1)
124 Compute hashes of package archives.
125
126 pip-help(1)
127 Show help for pip commands.
128
130 pip developers
131
133 The pip developers
134
135
136
137
13821.3 Jan 21, 2022 PIP(1)