Skip to content

Instantly share code, notes, and snippets.

@nathan-muir
Created August 3, 2017 12:28
Show Gist options
  • Save nathan-muir/9a3e8c62bfa69a46b01a4b9e9097d07b to your computer and use it in GitHub Desktop.
Save nathan-muir/9a3e8c62bfa69a46b01a4b9e9097d07b to your computer and use it in GitHub Desktop.
Uninstall packages installed by pip
pip list --local --format json | jq '[ .[] | .name] | join("\n")' -r | xargs pip uninstall -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment