Skip to main content
uv pip show displays detailed information about one or more installed packages, including version, location, dependencies, and metadata.

Usage

Arguments

package
package[]
required
Names of packages to display information about.

Display Options

-f, --files
Show the full list of installed files for each package.

Python Environment

-p, --python
string
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_PYTHON
-t, --target
path
Show packages from a --target directory.
--prefix
path
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

  1. Performance: uv is faster
  2. Output format: Nearly identical to pip
  3. Validation: uv adds --strict for dependency checking
  4. Installer field: Shows uv instead of pip

Unsupported pip Options

Most pip show options are supported. Notable exceptions:
  • Some legacy pip behaviors

Exit Codes