UV Python Package Manager Guide

Resources

What is UV?

UV is a fast Python package installer and resolver developed by Astral, written in Rust. Designed as a modern alternative to pip and pip-tools, it offers significantly faster dependency resolution and package installation. UV is fully compatible with pip, allowing it to seamlessly replace existing pip commands while delivering substantial performance improvements.

Why Use UV?

  • Ultra-fast Installation: 10-100x faster than traditional pip
  • Parallel Downloads: Simultaneously downloads multiple packages to save time
  • Smart Caching: Efficiently caches downloaded packages
  • Compatibility: Fully compatible with existing pip commands and workflows
  • Better Dependency Resolution: Avoids dependency conflicts for more reliable environments

Installing UV

Installing UV is straightforward:

1
pip install uv

Basic Usage

Installing Packages

Single package installation:

1
uv pip install numpy

Installing from requirements.txt:

1
uv pip install -r requirements.txt

Installing specific versions:

1
uv pip install pandas==2.0.3

Uninstalling Packages

1
uv pip uninstall numpy

Listing Installed Packages

1
uv pip list

Upgrading Packages

1
uv pip install --upgrade numpy

Dependency Management

Generating requirements.txt:

1
uv pip freeze > requirements.txt

Virtual Environment Management

UV provides powerful virtual environment management capabilities, making it easy to create and manage environments with different Python versions.

Creating Virtual Environments

Creating a default environment:

1
uv venv .venv

Specifying a Python version:

1
uv venv --python=3.11 .venv311

Using a specific Python interpreter from your system:

1
uv venv --python=/usr/bin/python3.10 .venv310

Activating Virtual Environments

On Linux/macOS:

1
source .venv/bin/activate

On Windows:

1
.venv\Scripts\activate

Installing Packages in Virtual Environments

Creating and installing dependencies in an environment:

1
2
uv venv .venv
uv pip install -r requirements.txt --venv .venv

Advanced UV Features

Using pyproject.toml

UV supports installing development dependencies from pyproject.toml:

1
uv pip install -e .

Syncing Dependencies

Ensuring your environment exactly matches requirements.txt:

1
uv pip sync requirements.txt

Accelerating with Parallel Installation

UV uses parallel installation by default, but you can adjust the parallelism:

1
uv pip install -r requirements.txt --jobs 16

Repository Mirror Configuration

Using alternative package repositories:

1
uv pip install numpy -i https://pypi.org/simple

Performance Optimization Tips

  1. Leverage UV’s caching to reduce repeated downloads
  2. Use uv pip compile to generate lock files for large projects
  3. Utilize the --jobs parameter to adjust parallelism for your system’s capabilities

Comparison with Other Tools

Feature UV pip pip-tools Poetry
Installation Speed Extremely Fast Slow Moderate Moderate
Dependency Resolution Precise Basic Good Good
Virtual Environment Management Supported Not Supported Not Supported Supported
Compatibility High High High Moderate
Parallel Downloads On by Default Not Supported Not Supported Supported

Troubleshooting Common Issues

UV Installation Failures

If you encounter issues installing UV, try:

1
2
pip install --upgrade pip
pip install uv --no-cache-dir

Dependency Resolution Conflicts

When facing dependency resolution conflicts:

1
uv pip install package-a package-b --strict

Using the --strict parameter provides more detailed conflict information.


UV Python Package Manager Guide
https://www.hardyhu.cn/2025/03/24/uv-python-package-manager-guide/
Author
John Doe
Posted on
March 24, 2025
Licensed under