HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pip show — Show information about installed packages. More information: <https://pip.pypa.io/en/stable/cli/pip_

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandshowcliinformationaboutpip showinstalledpackages

Problem

How to use the pip show command: Show information about installed packages. More information: <https://pip.pypa.io/en/stable/cli/pip_show/>.

Solution

pip show — Show information about installed packages. More information: <https://pip.pypa.io/en/stable/cli/pip_show/>.

Show information about a package:
pip show {{package}}


Show all information about a package:
pip show {{[-v|--verbose]}} {{package}}


Show all installed files for a package:
pip show {{[-f|--files]}} {{package}}

Code Snippets

Show information about a package

pip show {{package}}

Show all information about a package

pip show {{[-v|--verbose]}} {{package}}

Show all installed files for a package

pip show {{[-f|--files]}} {{package}}

Context

tldr-pages: common/pip show

Revisions (0)

No revisions yet.