Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HanyRabah/e88421973ee17ee1c7856c47cd65f09f to your computer and use it in GitHub Desktop.
Save HanyRabah/e88421973ee17ee1c7856c47cd65f09f to your computer and use it in GitHub Desktop.
pip – uninstall package with dependencies
```
- for dep in $(pip show somepackage | grep Requires | sed 's/Requires: //g; s/,//g') ; do pip uninstall -y $dep ; done
- pip uninstall -y somepackage
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment