# Try uv in a browser sandbox

Blazing-fast Python package manager

Source: https://www.agentclash.dev/try/uv
Markdown export: https://www.agentclash.dev/md/try/uv
Session limit: 10 minutes

A page visit does not create a sandbox. Starting a disposable session requires an explicit action on the HTML page.

## Suggested commands

- **Show version**: `uv --version`
- **Init a project**: `uv init demo && cd demo`
- **Create venv & run Python**: `uv venv && source .venv/bin/activate && python -c 'print("Hello from uv!")'`
- **Add a package**: `uv init pkgdemo && cd pkgdemo && uv add rich && uv run python -c 'import rich; rich.print("[bold green]uv works![/]")'`

## Links

- [Documentation](https://docs.astral.sh/uv/)
- [Source repository](https://github.com/astral-sh/uv)