Skip to content

uv

An extremely fast Python package and project manager, written in Rust.

run executable

this will run cowsay in its own virtual environment and execute it directly, similar to pipx

uvx cowsay -t sup

install different python versions

it uses the latest patch version automatically

uv python install 3.13

create virtual environment

request a specific python version and create a venv:

uv venv --python 3.13

managing packages

install with pip interface

with the pip interface

uv pip install <python package>

add to project

uv init
uv add sqlite-utils