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:
Basic Usage Installing Packages Single package installation:
Installing from requirements.txt:
1 uv pip install -r requirements.txt
Installing specific versions:
1 uv pip install pandas==2.0.3
Uninstalling Packages
Listing Installed Packages
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:
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:
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:
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
Leverage UV’s caching to reduce repeated downloads
Use uv pip compile
to generate lock files for large projects
Utilize the --jobs
parameter to adjust parallelism for your system’s capabilities
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.