HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: //proc/self/root/opt/alt/python37/share/doc/alt-python37-pip-10.0.1/docs/reference/pip_check.rst
.. _`pip check`:

pip check
---------

.. contents::

Usage
*****

.. pip-command-usage:: check


Description
***********

.. pip-command-description:: check


Examples
********

#. If all dependencies are compatible:

    ::

     $ pip check
     No broken requirements found.
     $ echo $?
     0

#. If a package is missing:

    ::

     $ pip check
     pyramid 1.5.2 requires WebOb, which is not installed.
     $ echo $?
     1

#. If a package has the wrong version:

    ::

     $ pip check
     pyramid 1.5.2 has requirement WebOb>=1.3.1, but you have WebOb 0.8.
     $ echo $?
     1