mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-08 10:46:01 +00:00
22 lines
446 B
Plaintext
22 lines
446 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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}}`
|