Dependencies List for My Project
Published at February 27, 2019 · 1 min read
Time to time you need to get all dependencies for a project you work with. It’s good if you have an up-to-date list in the requirements.txt file. In another case, you can always use pip freeze command in your virtualenv. It provides a flat list of all installed dependencies. To get the dependencies tree, it’s I use pipdeptree package. It provides a simple CLI tool to get dependencies tree with version constraints for packages where they are specified....