1PIP-CHECK(1) pip PIP-CHECK(1)
2
3
4
6 pip-check - description of pip check command
7
9 Verify installed packages have compatible dependencies.
10
11
13 python -m pip check [options]
14
16 -h, --help
17 Show help.
18
19 --debug
20 Let unhandled exceptions propagate outside the main subroutine,
21 instead of logging them to stderr.
22
23 --isolated
24 Run pip in an isolated mode, ignoring environment variables and
25 user configuration.
26
27 --require-virtualenv
28 Allow pip to only run in a virtual environment; exit with an er‐
29 ror otherwise.
30
31 --python <python>
32 Run pip with the specified Python interpreter.
33
34 -v, --verbose
35 Give more output. Option is additive, and can be used up to 3
36 times.
37
38 -V, --version
39 Show version and exit.
40
41 -q, --quiet
42 Give less output. Option is additive, and can be used up to 3
43 times (corresponding to WARNING, ERROR, and CRITICAL logging
44 levels).
45
46 --log <path>
47 Path to a verbose appending log.
48
49 --no-input
50 Disable prompting for input.
51
52 --proxy <proxy>
53 Specify a proxy in the form
54 scheme://[user:passwd@]proxy.server:port.
55
56 --retries <retries>
57 Maximum number of retries each connection should attempt (de‐
58 fault 5 times).
59
60 --timeout <sec>
61 Set the socket timeout (default 15 seconds).
62
63 --exists-action <action>
64 Default action when a path already exists: (s)witch, (i)gnore,
65 (w)ipe, (b)ackup, (a)bort.
66
67 --trusted-host <hostname>
68 Mark this host or host:port pair as trusted, even though it does
69 not have valid or any HTTPS.
70
71 --cert <path>
72 Path to PEM-encoded CA certificate bundle. If provided, over‐
73 rides the default. See 'SSL Certificate Verification' in pip
74 documentation for more information.
75
76 --client-cert <path>
77 Path to SSL client certificate, a single file containing the
78 private key and the certificate in PEM format.
79
80 --cache-dir <dir>
81 Store the cache data in <dir>.
82
83 --no-cache-dir
84 Disable the cache.
85
86 --disable-pip-version-check
87 Don't periodically check PyPI to determine whether a new version
88 of pip is available for download. Implied with --no-index.
89
90 --no-color
91 Suppress colored output.
92
93 --no-python-version-warning
94 Silence deprecation warnings for upcoming unsupported Pythons.
95
96 --use-feature <feature>
97 Enable new functionality, that may be backward incompatible.
98
99 --use-deprecated <feature>
100 Enable deprecated functionality, that will be removed in the fu‐
101 ture.
102
103
105 pip developers
106
108 The pip developers
109
110
111
112
11322.3 May 30, 2023 PIP-CHECK(1)