| name | uv-tools |
| description | Guide uvx and uv tool install usage. Use when running Python CLI tools via uv. |
Python CLI Tools with uvx
uvx runs Python CLI tools in an isolated, cached environment without installing them into the project or globally.
Usage
uvx ruff check .
uvx ruff@0.8.0 check .
uvx ruff@latest check .
uvx --from='httpie' http GET example.com
uvx --with='mkdocs-material' mkdocs serve
Persistent Installation
For frequently used tools:
uv tool install ruff
uv tool list
uv tool upgrade ruff
uv tool upgrade --all
uv tool uninstall ruff
Reference
If more detail is needed, consult: https://docs.astral.sh/uv/guides/tools/