Hacker News new | ask | show | jobs
by eivarv 2408 days ago
Why not just use conda for envs and deps (or env-specific pip), and install youtube-dl etc. via your platform's package manager?
2 comments

In my experience, conda breaks quite often. Most recently, conda has changed the location where it stores DLLs (e.g. for PyQt), which broke pyinstaller-based workflows.

In principle, it's a good idea; in practice, I'm not satisfied. On Windows, it's an easy solution, especially for packages that depend on non-python dependencies (e.g. hdf5).

My main problem with conda is that it's super slow.