pip-debug
Display pip environment debug information
TLDR
Show debug information
$ pip debug
Show verbose debug info$ pip debug --verbose
SYNOPSIS
pip debug [options]
DESCRIPTION
pip debug prints debugging information about pip and the current Python environment. Output includes the pip version, location, sys.path, the active Python interpreter, the supported wheel compatibility tags, and the configured indexes.The command is intended for diagnosing wheel selection problems (e.g. "no matching distribution found"), index configuration issues, and SSL/cert misconfiguration. It is not a stable interface — output format may change between pip releases and should not be parsed by scripts.
PARAMETERS
-v, --verbose
Show detailed debug information including all platform tags and resolved compatibility specs.--platform platform
Display compatibility tags for the given platform.--python-version version
Display compatibility tags for the given Python version.--implementation impl
Display compatibility tags for the given Python implementation (e.g. cp, pp).--abi abi
Display compatibility tags for the given ABI.
CAVEATS
Marked as unstable: pip explicitly warns "This command is only meant for debugging" and may change format. Combine with --verbose to see full tag enumeration.
SEE ALSO
pip(1), pip-config(1), pip-list(1)
