1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/uv-tool.md
Pranav Mangal ef2ee5eaac
uv, uv-{python,tool}: add page (#13491)
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: spageektti <git@spageektti.cc>
2024-08-22 00:04:10 +02:00

24 lines
492 B
Markdown

# uv tool
> Install and run commands provided by Python packages.
> More information: <https://docs.astral.sh/uv/reference/cli/#uv-tool>.
- Run a command from a package, without installing it:
`uv tool run {{command}}`
- Install a Python package system-wide:
`uv tool install {{package}}`
- Upgrade an installed Python package:
`uv tool upgrade {{package}}`
- Uninstall a Python package:
`uv tool uninstall {{package}}`
- List Python packages installed system-wide:
`uv tool list`