python

Installation
SKILL.md

Python Skill

  • Use uv for 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
Installs
1
Repository
cmvanb/dotfiles
First Seen
Jun 23, 2026
python — cmvanb/dotfiles