Back to search results
uv owner avatar

uv

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

Library packaging python resolver
Minimal

Install package

Latest
min add uv
Source archive SHA256
31b318f3…490a
Spec hash
7389f683…5bd6
Target
amd64/linux
Needs network
Yes
Closed source
No

Quick links

[ Docs ] [ Changelog ] [ Repo ] [ Security ] [ SBOM ]

What is uv?

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

How to use this package

Quick install

Installs the package into the current environment for this session. Use --build or --runtime to persist it as a build-time or runtime dependency.

min add uv

Declare as a task dependency in minimal.toml

Listing the package under tasks.<name>.packages makes it available inside that task’s sandbox.

[tasks.dev]
packages = ["uv"]

Build-time vs runtime

Choose build-time for tools needed during compilation, runtime for dynamic libraries loaded at runtime.

min add --build uv
min add --runtime uv