python
Installation
SKILL.md
Python Skill
- Use
uvfor all Python tasks. - Never install to the system Python.
Virtual Environments
Always install into a venv:
uv add <pkg> # preferred: updates pyproject.toml and syncs venv
uv pip install <pkg> # fallback: install directly into active venv
Create .envrc in the project root:
activate_venv /absolute/path/to/project/.venv