Skip to content

Instantly share code, notes, and snippets.

@JekRock
Created December 21, 2016 11:08
Show Gist options
  • Save JekRock/03ef807c8429e7df29c8a8b857aae44b to your computer and use it in GitHub Desktop.
Save JekRock/03ef807c8429e7df29c8a8b857aae44b to your computer and use it in GitHub Desktop.
Remove all from pip
pip list | Select-String -Pattern '(\w+) \(.*\)' | foreach {pip uninstall $_.Matches.Groups[1].Value}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment