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