Created
June 15, 2018 21:33
-
-
Save danieltomasz/f839bc78f7de32c1efe09078f43d0741 to your computer and use it in GitHub Desktop.
Uninstall package with dependencies
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
for dep in $(pip show python-neutronclient | grep Requires | sed 's/Requires: //g; s/,//g') ; do sudo pip uninstall -y $dep ; done | |
pip uninstall -y python-neutronclient | |
Source: http://stackoverflow.com/a/32698209/4828478 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment