Installing CLIs with uv
🐍 Python Tip! Tired of typing uv run every time? Install any Python CLI as a standalone uv tool and call it directly from anywhere, with no venv and no prefix.
# Before: prefix every call with `uv run`
uv run mytool --help
uv run mytool serve
# After: install once...
uv tool