I've been doing software of all kinds for a long long time. I've never, ever, been in a position where I was concerned about the speed of my package manager.
Compiler, yes. Linker, sure. Package downloader. No.
Many of these package managers get invoked countless times per day (e.g., in CI to prepare an environment and run tests, while spinning up new dev/AI agent environments, etc).
There is no situation where toolchain improvements or workflow improvements should be snuffed at.
Must be nice not to use Python!
I agree for my own projects where the code and libraries are not enormous. The speed and size gains aren’t going to be something that matters enough.
try conda
took an hour to install 30 dependencies
When you're in a big company, the problem really starts showing. A service can have 100+ dependencies, many in private repos, and once you start adding and modifying dependencies, it has to figure out how to version it to create the lock file across all of these and it can be really slow.
Cloud dev environments can also take several minutes to set up.