Python
UV is a modern, high-performance Python package manager and installer written in Rust.
Key features that make UV stand out:
Lightning-fast package installation and dependency resolution
Compatible with existing Python tools and workflows
Built-in virtual environment management
Support for modern packaging standards
Reliable dependency locking and reproducible environments
Memory-efficient operation, especially for large projects
Install
[!NOTE]brew also install
zsh completions
when you run below command
Add UV_TOOL_BIN_DIR
to paths
[!NOTE] We automatically add it to path, if you use our dotfiles, See extra.zsh
Usage
Initializing a new project
[!NOTE] For lib projects use:
uv init --lib
Git is automatically initialized and main git-related files like .gitignore
and an empty README.md
are generated.
Dependency Management With UV
Adding initial dependencies to the project
UV combines the environment creation and dependency installation into a single command. UV also updates the pyproject.toml
and uv.lock
files after each add command.
The first time you run the add command, UV creates a new virtual environment in the current working directory and installs the specified dependencies. On subsequent runs, UV will reuse the existing virtual environment and only install or update the newly requested packages, ensuring efficient dependency management.
[!TIP] You can also just edit these dependencies manually (this is what I usually do), and just run
uv sync
whenever you do, to update youruv.lock
(you shouldn’t edit these manually) and yourvenv
.
To remove a dependency from the environment and the pyproject.toml
file, you can use the uv remove
command. It will uninstall the package and all its child-dependencies:
Adding optional dependencies
Optional dependencies are packages that are not required for the core functionality of your project but may be needed for specific features. For example, Pandas has an excel
extra and a plot
extra to avoid the installation of Excel parsers and matplotlib unless someone explicitly requires them.
With UV, this syntax is slightly different. First, ensure that the core Pandas package is installed:
Then, add its optional dependencies:
Dependency groups
Dependency groups allow you to organize your dependencies into logical groups, such as development dependencies, test dependencies, or documentation dependencies. This is useful for keeping your production dependencies separate from your development dependencies.
To add a dependency to a specific group, use the --group
flag:
Running Python scripts with UV
Once you install the necessary dependencies, you can start working on your Python scripts as usual. UV provides a few different ways to run Python code:
The run command ensures that the script is executed inside the virtual environment UV created for the project.
Changing Python versions for the current project
You can switch Python versions for your current UV project at any point as long as the new version satisfies the specifications in your pyproject.toml file.
For example, the following file requires Python versions 3.9 and above:
What Are UV Tools And How to Use Them?
Some Python packages are exposed as command-line tools like ruff
or black
for code formatting and linting, pytest
for testing, pyright
for type checking, etc. UV provides two special interfaces to manage these packages:
UV provides two special interfaces to manage these packages:
Using
uv tool run
:Using the shorter and more convenient
uvx
command:
Read the UV Tools section of the documentation to learn more about these interfaces.
Linting
Let’s also add Ruff:
Typing
first install it
configure it
And now you can run it with uv run pyright
. And, as with the formatters/linters, you should get it integrated with your editor.
Testing
Sample test
And then:
I’ll leave fixing the test as an exercise for the reader.
Task runner
Let’s install it with uv add --dev poethepoet
and set it up right at the top of the pyproject.toml
Then any time you’ve made some changes or are preparing to commit, you can run uv run poe test
or just run uv run poe all
and the full suite of tools will get to work for you!
You can always still run uv run ruff format
or whatever
Switching From PIP and Virtualenv to UV
Converting an existing
virtualenv
projectstart by generating a requirements.txt file from your current environment if you haven't already:
Then, create a new UV project in the same directory:
Finally, install the dependencies from your requirements file:
Replacing common pip/virtualenv commands
pip/virtualenv commandUV equivalentpython -m venv .venv
uv venv
pip install package
uv add package
pip install -r requirements.txt
uv pip install -r requirements.txt
pip uninstall package
uv remove package
pip freeze
uv pip freeze
pip list
uv pip list
Monorepo
This is the bonus section! If you’re building something in a big team, and you don’t have a monolith, you’re likely to have multiple apps and libraries intermingling.
The best place to start is to have a glance at the uv Workspace docs. Then I recommend checking out the example python monorepos: uv-monorepo, postmodern-mono
Structure
There are three packages split into libs and apps:
libs: importable packages, never run independently, do not have entry points
apps: have entry points, never imported
Note that neither of these definitions are enforced by anything in
Python
oruv
.
In a workspace, each package defines its own pyproject.toml
, but the workspace shares a single lockfile, ensuring that the workspace operates with a consistent set of dependencies.
Getting started
To create a workspace, add a tool.uv.workspace
table to a pyproject.toml
, which will implicitly create a workspace rooted at that package.
[!TIP] By default, running
uv init
inside an existing package will add the newly created member to the workspace, creating atool.uv.workspace
table in the workspace root if it doesn't already exist.
Setup apps/libs projects in monorepo
Dependencies between workspace members are editable.
Commands
Managing Python Versions in UV
To learn more about managing Python versions with UV, refer to the documentation.
Miscellaneous
Utility
References
How to Learn Python From Scratch in 2025: An Expert Guide
UV features
Beyond Hypermodern: Python is easy now
Last updated
Was this helpful?