logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Display UV Dependencies - Analyze Project Tree | Online Free DevTools by Hexmos

Analyze project dependencies with UV Tree. Inspect your Python project's dependency graph to understand relationships and identify potential issues. Free online tool, no registration required.

uv-tree

Display project dependencies in a tree format. More information: https://docs.astral.sh/uv/reference/cli/#uv-tree.

  • Show dependency tree for current environment:

uv tree

  • Show dependency tree for all environments:

uv tree --universal

  • Show dependency tree up to a certain depth:

uv tree {{[-d|--depth]}} {{n}}

  • Show the latest available version for all outdated packages:

uv tree --outdated

  • Exclude dependencies from the dev group:

uv tree --no-dev

  • Show the inverted tree, so children are dependents instead of dependencies:

uv tree --invert

See Also