# Running Python

> Runs Python scripts and manages projects using uv. Use when asked to run a python script, execute python code, run pytest, or install packages. Always uses uv instead of pip or bare python.

- Skill: `tomevault-io/running-python` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/running-python`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/running-python/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/running-python

---


# Python with uv

Always use `uv` - faster and more reliable than pip/poetry.

## Commands

```bash
# Run scripts - ALWAYS use uv run
uv run python script.py
uv run pytest

# Dependencies
uv add numpy
uv sync
```

## Rules

1. Never `python script.py` - always `uv run python script.py`
2. Never `pip install` - always `uv add` or `uv sync`

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/yallup) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

