Created
February 12, 2019 16:20
-
-
Save optroodt/b1bb3b3d1edbcefb31f3c621abd7065c to your computer and use it in GitHub Desktop.
Handy pip commands
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
# uninstall packages installed by pip | |
pip freeze | xargs pip uninstall -y | |
# see which packages depend on a package: | |
pip show <insert_package_name_here>| grep ^Require |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment