uv pip show displays detailed information about one or more installed packages, including version, location, dependencies, and metadata.
Usage
Arguments
Names of packages to display information about.
Display Options
-f, --files
Show the full list of installed files for each package.
Python Environment
Python interpreter to search for packages.By default, searches in virtual environment or system Python if no venv is found.Environment:
UV_PYTHON--system
Show packages from system Python, ignoring virtual environments.Environment:
UV_SYSTEM_PYTHONShow packages from a
--target directory.Show packages from a
--prefix directory.Validation
--strict
Validate the environment, detecting packages with missing dependencies.
Output Format
Basic Information
With Files
With--files, also shows installed files:
Multiple Packages
When showing multiple packages, they’re separated by---:
Displayed Fields
Package Metadata
- Name: Package name
- Version: Installed version
- Summary: Short description
- Home-page: Project website
- Author: Package author
- Author-email: Author contact
- License: License type
- Location: Installation directory
Dependencies
- Requires: Direct dependencies
- Required-by: Packages that depend on this package
Installation Info
- Installer: Tool used to install (typically
uv) - Editable project location: For editable installs
Examples
Basic Usage
Check Dependencies
Find Package Location
Inspect Files
Specific Environment
Script Usage
Use Cases
Debug Installation Issues
Find Import Paths
Audit Dependencies
Verify Editable Installs
License Compliance
File Inventory
Differences from pip show
uv pip show is largely compatible with pip show:
Key Differences
- Performance: uv is faster
- Output format: Nearly identical to pip
- Validation: uv adds
--strictfor dependency checking - Installer field: Shows
uvinstead ofpip
Unsupported pip Options
Most pip show options are supported. Notable exceptions:- Some legacy pip behaviors
Exit Codes
Related Commands
uv pip list- List all installed packagesuv pip freeze- Output installed packagesuv pip install- Install packagesuv pip uninstall- Uninstall packages