Hacker News new | ask | show | jobs
by Dryondristica 1966 days ago
People always criticise Python for dependency management, but I've never found it to be that bad. virtualenv with requirements.txt has been completely fine in my experience with medium-sized projects. If necessary you can pin versions with a separate version-locked requirements.txt, and populate that from a base requirements file.
1 comments

Came here to say exactly this. This has been my experience as well