Skip to content

Instantly share code, notes, and snippets.

@merqlove
Created June 2, 2017 12:32
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 merqlove/f793635562f46b2950d1a6c5870b70c2 to your computer and use it in GitHub Desktop.
Save merqlove/f793635562f46b2950d1a6c5870b70c2 to your computer and use it in GitHub Desktop.
Uninstall package list from pip with grep
pip uninstall $(pip list --format json | jq -r ".[]|.name" | grep ^azure | paste -sd ' ' -) -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment