Home Backend Development Python Tutorial UV as an alternative to Poetry

UV as an alternative to Poetry

Dec 03, 2024 pm 02:20 PM

There are somehow too many package managers for Python. This, of course, has an obvious reason - the paucity of functionality of pip, the built-in package manager. But still, the inner perfectionist wants a simple solution out of the box. Install Python - and you immediately get a fast and convenient package manager, and preferably a Python version manager. But instead you get pip. Some people, of course, actually use it, but still poetry, pdm, conda, pipenv or at least pip-tools are much more convenient.

Well, okay, it would seem that poetry is good for everyone. I use it myself in most projects. But installing dependencies starts to seem slow - especially when rebuilding the docker container. Plus there is a hassle with installing poetry itself or changing versions of python - you change the version through, for example, pyenv, and poetry gives an error when you try to recreate the environment. Although it is assumed that it can work with different versions of Python. This can be solved, of course, easily - by specifying the full path to the interpreter, but it’s still a crutch. As well as installing the same pyenv, and generally working with it. And there seems to be nothing more to control python versions.

And so, in February, an interesting solution appeared from the creators of Ruff. UV package manager written in Rast. Purely console-based, of course, and the syntax is very reminiscent of poetry. In terms of functionality, these are almost the same thing, but with a bunch of goodies and several times faster. The doc shows this diagram of the installation time for the same set of dependencies:

UV как альтернатива Poetry

The syntax is really similar to poetry. This is how, for example, a project is created (go straight to the directory):

uv init project
cd project
Copy after login

There we have this structure:

project
├── .python-version
├── hello.py
├── pyproject.toml
└── README.md
Copy after login

Dependencies, like poetry, are saved in the pyproject.toml config, the python version is saved in .python-version.

Let's create a virtual environment:

uv venv
Copy after login

Add SQLAlchemy depending on:

uv add sqlalchemy
Copy after login

Or we can add a specific version:

uv add sqlalchemy@2.0.32
Copy after login

Now let's delete:

uv remove sqlalchemy
Copy after login

Now sugar - python version management. Let's install 3.11.9 and create an environment with such an interpreter.

uv python install 3.11.9
uv venv --python 3.11.9
Copy after login

The Python version will be saved in .python-version, and you don’t need to point this out to the package manager every time you change the interpreter, because UV is the package manager. Moreover, you don’t even have to install the version manually, but immediately create an environment with the desired version: if it is not installed, then the UV itself will pull it, that is, you don’t have to think about it at all - well, it’s a thrill.

Like poetry, there is functionality for building and publishing packages on PyPI. You can build a container and publish a package using two commands:

uv build
uv publish
Copy after login

You can also use UV as a supervisor, and run scripts and applications using uv run

And the cherry on the cake is the docker image.

FROM ghcr.io/astral-sh/uv:python3.12

WORKDIR /app

RUN uv venv

CMD ["run", "app"]
Copy after login

You don’t need to pull the python image and install UVs there via pip, you can immediately pull the UV image and have fun. Plus there are a lot of other tricks there, but about this in the dock (which, by the way, is very clear) - those who need these chips in the dock will not be afraid to go into the dock.

In general, a really convenient tool and a good alternative to poetry. There is no UV support in any IDE yet, but it's a matter of time. It’s cool that there are so many features, I want the project to develop. Share this post and write what you use.

P.S. And you need to indulge in TGC: https://t.me/dmkjfss

The above is the detailed content of UV as an alternative to Poetry. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to teach computer novice programming basics in project and problem-driven methods within 10 hours? How to teach computer novice programming basics in project and problem-driven methods within 10 hours? Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? How to efficiently copy the entire column of one DataFrame into another DataFrame with different structures in Python? Apr 01, 2025 pm 11:15 PM

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? How to avoid being detected by the browser when using Fiddler Everywhere for man-in-the-middle reading? Apr 02, 2025 am 07:15 AM

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

What are regular expressions? What are regular expressions? Mar 20, 2025 pm 06:25 PM

Regular expressions are powerful tools for pattern matching and text manipulation in programming, enhancing efficiency in text processing across various applications.

How does Uvicorn continuously listen for HTTP requests without serving_forever()? How does Uvicorn continuously listen for HTTP requests without serving_forever()? Apr 01, 2025 pm 10:51 PM

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

What are some popular Python libraries and their uses? What are some popular Python libraries and their uses? Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

How to dynamically create an object through a string and call its methods in Python? How to dynamically create an object through a string and call its methods in Python? Apr 01, 2025 pm 11:18 PM

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

See all articles