Skip to main content

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

Project description

uv

uv image image image Actions status Discord

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

Shows a bar chart with benchmark results.

Installing Trio's dependencies with a warm cache.

Highlights

uv is backed by Astral, the creators of Ruff.

Installation

Install uv with our standalone installers:

# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Or, from PyPI:

# With pip.
pip install uv
# Or pipx.
pipx install uv

If installed via the standalone installer, uv can update itself to the latest version:

uv self update

See the installation documentation for details and alternative installation methods.

Documentation

uv's documentation is available at docs.astral.sh/uv.

Additionally, the command line reference documentation can be viewed with uv help.

Features

Project management

uv manages project dependencies and environments, with support for lockfiles, workspaces, and more, similar to rye or poetry:

$ uv init example
Initialized project `example` at `/home/user/example`

$ cd example

$ uv add ruff
Creating virtual environment at: .venv
Resolved 2 packages in 170ms
   Built example @ file:///home/user/example
Prepared 2 packages in 627ms
Installed 2 packages in 1ms
 + example==0.1.0 (from file:///home/user/example)
 + ruff==0.5.4

$ uv run ruff check
All checks passed!

See the project documentation to get started.

uv also supports building and publishing projects, even if they're not managed with uv. See the publish guide to learn more.

Tool management

uv executes and installs command-line tools provided by Python packages, similar to pipx.

Run a tool in an ephemeral environment using uvx (an alias for uv tool run):

$ uvx pycowsay 'hello world!'
Resolved 1 package in 167ms
Installed 1 package in 9ms
 + pycowsay==0.0.0.2
  """

  ------------
< hello world! >
  ------------
   \   ^__^
    \  (oo)\_______
       (__)\       )\/\
           ||----w |
           ||     ||

Install a tool with uv tool install:

$ uv tool install ruff
Resolved 1 package in 6ms
Installed 1 package in 2ms
 + ruff==0.5.4
Installed 1 executable: ruff

$ ruff --version
ruff 0.5.4

See the tools documentation to get started.

Python management

uv installs Python and allows quickly switching between versions.

Install multiple Python versions:

$ uv python install 3.10 3.11 3.12
Searching for Python versions matching: Python 3.10
Searching for Python versions matching: Python 3.11
Searching for Python versions matching: Python 3.12
Installed 3 versions in 3.42s
 + cpython-3.10.14-macos-aarch64-none
 + cpython-3.11.9-macos-aarch64-none
 + cpython-3.12.4-macos-aarch64-none

Download Python versions as needed:

$ uv venv --python 3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

$ uv run --python pypy@3.8 -- python --version
Python 3.8.16 (a9dbdca6fc3286b0addd2240f11d97d8e8de187a, Dec 29 2022, 11:45:30)
[PyPy 7.3.11 with GCC Apple LLVM 13.1.6 (clang-1316.0.21.2.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>>

Use a specific Python version in the current directory:

$ uv python pin pypy@3.11
Pinned `.python-version` to `pypy@3.11`

See the Python installation documentation to get started.

Script support

uv manages dependencies and environments for single-file scripts.

Create a new script and add inline metadata declaring its dependencies:

$ echo 'import requests; print(requests.get("https://astral.sh"))' > example.py

$ uv add --script example.py requests
Updated `example.py`

Then, run the script in an isolated virtual environment:

$ uv run example.py
Reading inline script metadata from: example.py
Installed 5 packages in 12ms
<Response [200]>

See the scripts documentation to get started.

A pip-compatible interface

uv provides a drop-in replacement for common pip, pip-tools, and virtualenv commands.

uv extends their interfaces with advanced features, such as dependency version overrides, platform-independent resolutions, reproducible resolutions, alternative resolution strategies, and more.

Migrate to uv without changing your existing workflows — and experience a 10-100x speedup — with the uv pip interface.

Compile requirements into a platform-independent requirements file:

$ uv pip compile docs/requirements.in \
   --universal \
   --output-file docs/requirements.txt
Resolved 43 packages in 12ms

Create a virtual environment:

$ uv venv
Using Python 3.12.3
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate

Install the locked requirements:

$ uv pip sync docs/requirements.txt
Resolved 43 packages in 11ms
Installed 43 packages in 208ms
 + babel==2.15.0
 + black==24.4.2
 + certifi==2024.7.4
 ...

See the pip interface documentation to get started.

Platform support

See uv's platform support document.

Versioning policy

See uv's versioning policy document.

Contributing

We are passionate about supporting contributors of all levels of experience and would love to see you get involved in the project. See the contributing guide to get started.

Acknowledgements

uv's dependency resolver uses PubGrub under the hood. We're grateful to the PubGrub maintainers, especially Jacob Finkelman, for their support.

uv's Git implementation is based on Cargo.

Some of uv's optimizations are inspired by the great work we've seen in pnpm, Orogene, and Bun. We've also learned a lot from Nathaniel J. Smith's Posy and adapted its trampoline for Windows support.

License

uv is licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in uv by you, as defined in the Apache-2.0 license, shall be dually licensed as above, without any additional terms or conditions.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uv-0.5.4.tar.gz (2.3 MB view details)

Uploaded Source

Built Distributions

uv-0.5.4-py3-none-win_amd64.whl (15.6 MB view details)

Uploaded Python 3 Windows x86-64

uv-0.5.4-py3-none-win32.whl (13.7 MB view details)

Uploaded Python 3 Windows x86

uv-0.5.4-py3-none-musllinux_1_1_x86_64.whl (14.6 MB view details)

Uploaded Python 3 musllinux: musl 1.1+ x86-64

uv-0.5.4-py3-none-musllinux_1_1_ppc64le.whl (15.8 MB view details)

Uploaded Python 3 musllinux: musl 1.1+ ppc64le

uv-0.5.4-py3-none-musllinux_1_1_i686.whl (13.9 MB view details)

Uploaded Python 3 musllinux: musl 1.1+ i686

uv-0.5.4-py3-none-musllinux_1_1_armv7l.whl (13.6 MB view details)

Uploaded Python 3 musllinux: musl 1.1+ ARMv7l

uv-0.5.4-py3-none-manylinux_2_28_aarch64.whl (13.4 MB view details)

Uploaded Python 3 manylinux: glibc 2.28+ ARM64

uv-0.5.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.5 MB view details)

Uploaded Python 3 manylinux: glibc 2.17+ x86-64

uv-0.5.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (19.0 MB view details)

Uploaded Python 3 manylinux: glibc 2.17+ s390x

uv-0.5.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (14.7 MB view details)

Uploaded Python 3 manylinux: glibc 2.17+ ppc64le

uv-0.5.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (14.9 MB view details)

Uploaded Python 3 manylinux: glibc 2.17+ ppc64

uv-0.5.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded Python 3 manylinux: glibc 2.17+ i686

uv-0.5.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (13.6 MB view details)

Uploaded Python 3 manylinux: glibc 2.17+ ARMv7l

uv-0.5.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl (13.2 MB view details)

Uploaded Python 3 manylinux: glibc 2.17+ ARM64 musllinux: musl 1.1+ ARM64

uv-0.5.4-py3-none-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded Python 3 macOS 11.0+ ARM64

uv-0.5.4-py3-none-macosx_10_12_x86_64.whl (14.0 MB view details)

Uploaded Python 3 macOS 10.12+ x86-64

uv-0.5.4-py3-none-linux_armv6l.whl (13.9 MB view details)

Uploaded Python 3

File details

Details for the file uv-0.5.4.tar.gz.

File metadata

  • Download URL: uv-0.5.4.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.5.3

File hashes

Hashes for uv-0.5.4.tar.gz
Algorithm Hash digest
SHA256 cd7a5a3a36f975a7678f27849a2d49bafe7272143d938e9b6f3bf28392a3ba00
MD5 5b8ef47b0cbcb1dafbbb531408bb980e
BLAKE2b-256 18ad66cc8e00c217e7fcf76598c880632b480aa38d4cad311596b78e99737498

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-win_amd64.whl.

File metadata

  • Download URL: uv-0.5.4-py3-none-win_amd64.whl
  • Upload date:
  • Size: 15.6 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.5.3

File hashes

Hashes for uv-0.5.4-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 493aedc3c758bbaede83ecc8d5f7e6a9279ebec151c7f756aa9ea898c73f8ddb
MD5 1d6e534c9f73ca947d8de328ee96ff9f
BLAKE2b-256 b1c8827e4da65cbdab2c1619767a68ab99a31de078e511b71ca9f24777df33f9

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-win32.whl.

File metadata

  • Download URL: uv-0.5.4-py3-none-win32.whl
  • Upload date:
  • Size: 13.7 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.5.3

File hashes

Hashes for uv-0.5.4-py3-none-win32.whl
Algorithm Hash digest
SHA256 a79a0885df364b897da44aae308e6ed9cca3a189d455cf1c205bd6f7b03daafa
MD5 eb310aa8d607995e9f6a20b54583be15
BLAKE2b-256 519a33d40a5068fd37c4f7b4fa82396e3ee90a691cd256f364ff398612c1d5d4

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f806af0ee451a81099c449c4cff0e813056fdf7dd264f3d3a8fd321b17ff9efc
MD5 741f2f3622220da5f729e9daf10f4f56
BLAKE2b-256 49b20cc4ae143b9605c25e75772aea22876b5875db79982ba62bb6f8d3099fab

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f511faf719b797ef0f14688f1abe20b3fd126209cf58512354d1813249745119
MD5 882121adeae3d15a34633f528e5bb464
BLAKE2b-256 0e22efd1eec81a566139bced68f4bd140c275edac3dac1bd6236cf8d756423db

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8d7a4a3df943a7c16cd032ccbaab8ed21ff64f4cb090b3a0a15a8b7502ccd876
MD5 f141ebecb0c243cbb082609acc6ae6b4
BLAKE2b-256 268dbae613187ba88d74f0268246ce140f23d399bab96d2cbc055d6e4adafd09

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 69079e900bd26b0f65069ac6fa684c74662ed87121c076f2b1cbcf042539034c
MD5 45acdc1fa611651352510e262985e722
BLAKE2b-256 0b3031a9985d84ffb63fb9212fa2b565497e0ceb581be055e5cc760afbe26b11

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca72e6a4c3c6b8b5605867e16a7f767f5c99b7f526de6bbb903c60eb44fd1e01
MD5 dac2371a66f4b028cbf87f80cfdcd140
BLAKE2b-256 e91c9698818f4c5493dfd5ab0899a90eee789cac214de2f171220bcdfaefc93a

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30ce031e36c54d4ba791d743d992d0a4fd8d70480db781d30a2f6f5125f39194
MD5 3adf984a10568ff690a9f2aff3b8b80a
BLAKE2b-256 3d6728a8b4c23920ae1b1b0103ebae2fa176bd5677c4353b5e814a51bd183285

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f07e5e0df40a09154007da41b76932671333f9fecb0735c698b19da25aa08927
MD5 515ef431062de4c42fd3a36ec10c1f5d
BLAKE2b-256 749ec2ebf66b90d48def06cda29626bb38068418ed135ca903beb293825ef66d

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed5659cde099f39995f4cb793fd939d2260b4a26e4e29412c91e7537f53d8d25
MD5 758800e95f5477646806bb2eae4208d6
BLAKE2b-256 c935a6dc404d4d8884e26ad7bda004c101972fe7d81f86546a8628272812b897

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 05b45c7eefb178dcdab0d49cd642fb7487377d00727102a8d6d306cc034c0d83
MD5 a5d54738cbac8ce8318368dd45182e16
BLAKE2b-256 b12b0fed8a49440494f6806dcb67021ca8f14d46f45a665235fc153791e19574

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 928ed95fefe4e1338d0a7ad2f6b635de59e2ec92adaed4a267f7501a3b252263
MD5 e9c51f67d2fecd926912240047205f44
BLAKE2b-256 194b128fd874151919c71af51f528db28964e6d8e509fff12210ec9ba99b13fb

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd2df2ba823e6684230ab4c581f2320be38d7f46de11ce21d2dbba631470d7b6
MD5 7ef7aad7393a7600c6a93db4523bd409
BLAKE2b-256 c1cbbee01ef23e5020dc1f12d86ca8f82e95a723585db3ec64bfab4016e5616c

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 df3cb58b7da91f4fc647d09c3e96006cd6c7bd424a81ce2308a58593c6887c39
MD5 cd689e7670b364b5ba3f2682a02ddbfb
BLAKE2b-256 b8f906ab86e9f0c270c495077ef2b588458172ed84f9c337de725c8b08872354

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f40c6c6c3a1b398b56d3a8b28f7b455ac1ce4cbb1469f8d35d3bbc804d83daa4
MD5 853474c7f57ea5d57cbd76b2b7ade6f2
BLAKE2b-256 1fc506e3b93045179b92d75cf94e6e224baec3226070f1cbc0e11d4898300b54

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4432215deb8d5c1ccab17ee51cb80f5de1a20865ee02df47532f87442a3d6a58
MD5 b2f1b1477fdc08d6daf79dfca2473ea1
BLAKE2b-256 b8bec3acbe2944cd694a5d61a7a461468fa886512c84014545bb8f3244092eaa

See more details on using hashes here.

File details

Details for the file uv-0.5.4-py3-none-linux_armv6l.whl.

File metadata

File hashes

Hashes for uv-0.5.4-py3-none-linux_armv6l.whl
Algorithm Hash digest
SHA256 2118bb99cbc9787cb5e5cc4a507201e25a3fe88a9f389e8ffb84f242d96038c2
MD5 1f25eee8e58b39223f28612eff988898
BLAKE2b-256 2b3e6bf24d7bb0d11715ea783ecabcacdecdc8c51fca0144fcdad2090d65bae5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page