uv icon indicating copy to clipboard operation
uv copied to clipboard

`uv tool list -v` should show paths

Open konstin opened this issue 1 month ago • 2 comments

It would be great if uv tool list would have a verbose mode that shows paths, maybe reusing -v, maybe something like --paths.

Current output:

$ cargo run -q tool list -v --preview
DEBUG uv 0.2.21
DEBUG Acquired lock for `/home/konsti/.local/share/uv/tools`
warning: Ignoring malformed tool `interpreter-v2`: missing receipt
Python interpreter not found at `/home/konsti/.local/share/uv/tools/azure-cli/bin/python3`
black v24.4.2
    black
    blackd

Desired output

$ cargo run -q tool list -v --preview
DEBUG uv 0.2.21
DEBUG Acquired lock for `/home/konsti/.local/share/uv/tools`
warning: Ignoring malformed tool `interpreter-v2`: missing receipt
Python interpreter not found at `/home/konsti/.local/share/uv/tools/azure-cli/bin/python3`
black v24.4.2 (/home/konsti/.local/share/uv/tools/black/)
    black (/home/konsti/.local/bin/black)
    blackd (/home/konsti/.local/bin/blackd)

konstin avatar Jul 05 '24 07:07 konstin