logoalt Hacker News

maelnyesterday at 4:08 PM1 replyview on HN

For me, the speed is the least interesting part of `uv`. What I like about it is what it bundle into a single bin : Managing installed python version, automatically creating local .venv for the project (I don't like software like pipenv who install the venv who knows where in a global directory of their choosing), support of pyproject.toml, including of the python version declared in it, and running script with dependencies.

None of it is unique to `uv` I believe, but it does it all, reliably, is easy to install, and easy to use. In terms of DX, for my use cases, it beat poetry, pipenv, pyenv (for python version management) and just using pip


Replies

BrokenCogsyesterday at 5:17 PM

For a uv noob like me: what do you mean by bundling it all into a single binary? How does that work?

show 2 replies