commands.sh

poetry show

all

Show details of packages in your Poetry project. See also: `asdf`.

More info →

Options (4)

-t, --treeboolean

Show details as a dependency tree

Example: poetry show {{[-t|--tree]}}
-T, --top-levelboolean

Only show top-level packages (those explicitly defined in `pyproject.toml`)

Example: poetry show {{[-T|--top-level]}}
-o, --outdatedboolean

Show outdated packages

Example: poetry show {{[-o|--outdated]}}
-l, --latestboolean

Show the latest versions for all packages

Example: poetry show {{[-l|--latest]}}

Examples (8)

Display all packages

Show details of a specific package

poetry show package_name

Show details as a dependency tree

poetry show [-t|--tree]

Only show top-level packages (those explicitly defined in `pyproject.toml`)

poetry show [-T|--top-level]

Show outdated packages

poetry show [-o|--outdated]

Show the latest versions for all packages

poetry show [-l|--latest]

Exclude a specific dependency group/s

poetry show --without group1,group2,...

Only show a specific dependency group/s

poetry show --only group1,group2,...
made by @shridhargupta | data from tldr-pages