LinuxCommandLibrary

pip-show

TLDR

Show package information

$ pip show [package]
copy
Show multiple packages
$ pip show [package1] [package2]
copy
Show with files list
$ pip show --files [package]
copy

SYNOPSIS

pip show [options] packages...

DESCRIPTION

pip show displays metadata for installed packages. Shows name, version, summary, location, dependencies, and requirements. Useful for inspecting package details and dependency information.

PARAMETERS

-f, --files

Show installed files.

SEE ALSO

pip(1), pip-list(1), pip-inspect(1)

Copied to clipboard