uv-python
Installation
SKILL.md
Use Python with uv
Use uv exclusively. Never use pip, pip3, pip-tools, poetry, virtualenv or conda for dependency management. Never invoke python or python3 directly, including python -c.
Choosing the Right Approach
| Scenario | Approach |
|---|---|
Working in a directory with pyproject.toml |
Project — use uv add, uv run |
| Reusable script that needs specific packages | Standalone Script — use PEP 723 inline metadata |
| Quick throwaway code, no file needed | One-Off Code — pipe to uv run - |
Project (has pyproject.toml)
Related skills