7 ms·
> This approach eliminates the need for complex setup tools like requirements.txt or package managers... And yet, the rest of the article is about uv. Accordin
by dagenix 1y ago
> This approach eliminates the need for complex setup tools like requirements.txt or package managers...
And yet, the rest of the article is about uv. According to uv itself:
> An extremely fast Python package and project manager, written in Rust.
It's a package manager!
- frfl 1y agoSeems like you're dismissing the uv single file setup approach without fully understanding it. I'd recommend giving it a try. It's indeed simpler and snappier than any other package manager to date.
- GolDDranks 1y agoA package manager that is a quick and snappy binary that doesn't need a big runtime, unlike most of the Python tools.
- deleted 1y ago[deleted]
- zahlman 1y agoWhat exactly is your standard for "big"? $ du ~/.local/pipx/venvs/uv/bin/uv | cut -f 1 38812 Stripped and dynamically linked, BTW. Compare the system-provided Python: $ du /usr/bin/python3.12 | cut -f 1 7832 (But also, if you hope not to pay the cost of a Python runtime, what is your remaining use case for uv?)