-
-
Save wogsland/dc36a6fd126ea4d6a0a97d38228bf03a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// the "old" way | |
$ pip freeze > requirements.txt | |
// looks at imports in your codebase and only includes those in requirements | |
$ pipreqs | |
// find out what dependencies need updating | |
$ pip list --outdated | |
// why are these packages here? | |
$ pipdeptree --reverse | |
// package details on the cmd line | |
$ leak tensorflow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment