Managing Python dependencies with pip-tools and requirements.txt
Posted by Aly Sivji in Quick Hits
The paradox of choice in Python packaging tools makes dependency management more complex than it needs to be. In this Quick Hit, we will explore Python dependency management and demonstrate an easy-to-implement workflow to generate reproducible environments.
Note: this article assumes familiarity with virtual environments.
Background
We use dependency management …