logoalt Hacker News

sieeplast Tuesday at 2:45 PM2 repliesview on HN

Ive been away from python for awhile now, I was under the impression uv was somehow solving this dependency hell. Whats the benefit of using uv/pip together? Speed?


Replies

embedding-shapelast Tuesday at 3:47 PM

As far as I can tell, `pip` by itself still doesn't even do something basic as resolving the dependency tree first, then download all the packages in parallel, as an basic example. The `uv pip` shim does.

And regardless if you use only uv, or pip-via-uv, or straight up pip, dependencies you install later steps over dependencies you installed earlier, and no tool so far seems to try to solve this, which leads me to conclude it's a Python problem, not a package manager problem.

chuckadamslast Tuesday at 2:54 PM

`uv pip` is still uv, it's just uv's compatibility layer for pip.