How uv got so fast
simonwillison.net·6d
Preview
Report Post

How uv got so fast. Andrew Nesbitt provides an insightful teardown of why uv is so much faster than pip. It’s not nearly as simple as just "they rewrote it in Rust" - uv gets to skip a huge amount of Python packaging history (which pip needs to implement for backwards compatibility) and benefits enormously from work over recent years that makes it possible to resolve dependencies across most packages without having to execute the code in setup.py() using a Python interpreter.

Two notes that caught my eye that I hadn’t understood before:

HTTP range requests for metadata. Wheel files are zi…

Similar Posts

Loading similar posts...