Skip to content

Instantly share code, notes, and snippets.

@vtta
Created August 8, 2019 15:32
Show Gist options
  • Save vtta/ed57de7b368de9d964be2749aba9239c to your computer and use it in GitHub Desktop.
Save vtta/ed57de7b368de9d964be2749aba9239c to your computer and use it in GitHub Desktop.
pip uninstall recursively
#!/bin/sh
# for dep in $(pip show somepackage | grep Requires | sed 's/Requires: //g; s/,//g') ; do pip uninstall -y $dep ; done
for dep in $(pip show "$1" | grep Requires | sed 's/Requires: //g; s/,//g') ; do
pip uninstall -y $dep
done
pip uninstall -y "$1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment