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 --isolated
19 Run pip in an isolated mode, ignoring environment variables and
20 user configuration.
21
22 -v, --verbose
23 Give more output. Option is additive, and can be used up to 3
24 times.
25
26 -V, --version
27 Show version and exit.
28
29 -q, --quiet
30 Give less output. Option is additive, and can be used up to 3
31 times (corresponding to WARNING, ERROR, and CRITICAL logging
32 levels).
33
34 --log <path>
35 Path to a verbose appending log.
36
37 --proxy <proxy>
38 Specify a proxy in the form [user:passwd@]proxy.server:port.
39
40 --retries <retries>
41 Maximum number of retries each connection should attempt
42 (default 5 times).
43
44 --timeout <sec>
45 Set the socket timeout (default 15 seconds).
46
47 --exists-action <action>
48 Default action when a path already exists: (s)witch, (i)gnore,
49 (w)ipe, (b)ackup, (a)bort.
50
51 --trusted-host <hostname>
52 Mark this host as trusted, even though it does not have valid or
53 any HTTPS.
54
55 --cert <path>
56 Path to alternate CA bundle.
57
58 --client-cert <path>
59 Path to SSL client certificate, a single file containing the
60 private key and the certificate in PEM format.
61
62 --cache-dir <dir>
63 Store the cache data in <dir>.
64
65 --no-cache-dir
66 Disable the cache.
67
68 --disable-pip-version-check
69 Don't periodically check PyPI to determine whether a new version
70 of pip is available for download. Implied with --no-index.
71
72 --no-color
73 Suppress colored output
74
75
77 pip-install(1)
78 Install packages.
79
80 pip-download(1)
81 Download packages.
82
83 pip-uninstall(1)
84 Uninstall packages.
85
86 pip-freeze(1)
87 Output installed packages in requirements format.
88
89 pip-list(1)
90 List installed packages.
91
92 pip-show(1)
93 Show information about installed packages.
94
95 pip-check(1)
96 Verify installed packages have compatible dependencies.
97
98 pip-search(1)
99 Search PyPI for packages.
100
101 pip-wheel(1)
102 Build wheels from your requirements.
103
104 pip-hash(1)
105 Compute hashes of package archives.
106
107 pip-help(1)
108 Show help for pip commands.
109
111 pip developers
112
114 2008-2019, PyPA
115
116
117
118
11919.1 November 25, 2019 PIP(1)