Skip to content

Instantly share code, notes, and snippets.

@guiltry
Created April 4, 2016 15:57
Show Gist options
  • Save guiltry/0630b46560894f84f984705f1f28deb9 to your computer and use it in GitHub Desktop.
Save guiltry/0630b46560894f84f984705f1f28deb9 to your computer and use it in GitHub Desktop.
Remove all pip dependencies
for dep in $(pip show somepackage | grep Requires | sed 's/Requires: //g; s/,//g') ; do pip uninstall -y $dep ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment