python-package-management
Installation
SKILL.md
Quick Reference
| uv Command | Purpose |
|---|---|
uv init my-project |
Create new project |
uv add <package> |
Add dependency |
uv add --dev <package> |
Add dev dependency |
uv sync |
Install all dependencies |
uv run <command> |
Run in virtual env |
uv lock --upgrade |
Update all deps |
uv python install 3.13 |
Install Python version |
| Tool | Command | Speed |
|---|---|---|
| uv | uv add requests |
10-100x faster |
| pip | pip install requests |
Baseline |