Skip to content

Instantly share code, notes, and snippets.

@jamiely
Created March 18, 2019 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiely/a0993e50ae4b5e346197b28ea10d53db to your computer and use it in GitHub Desktop.
Save jamiely/a0993e50ae4b5e346197b28ea10d53db to your computer and use it in GitHub Desktop.
Uninstall pip packages
pip list | grep -v pip | grep -v setuptools | grep -v powerline | awk '{ print $1 }' | xargs -I'{}' pip uninstall -y {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment