---
title: uv
kind: note
description: Python package and project manager
words: 12
readingMinutes: 1
created: '2025-06-15T00:00:00.000Z'
updated: '2025-06-28T08:48:20+02:00'
website: https://docs.astral.sh/uv/
---
## Link

<https://docs.astral.sh/uv/>

# Resources
- [GitHub](https://github.com/astral-sh/uv)
# FAQ
## Venv workflow compared
The traditional approach:
```shell
python3 -m venv .venv
. .venv/bin/activate
python3 main.py
```
With uv:
```shell
uv venv
uv run python3 main.py
```
