Skip to content

Instantly share code, notes, and snippets.

@alichaudry
Created May 3, 2018 21:59
Show Gist options
  • Save alichaudry/82ec7513f08837a94e899c08513662b8 to your computer and use it in GitHub Desktop.
Save alichaudry/82ec7513f08837a94e899c08513662b8 to your computer and use it in GitHub Desktop.
Uninstall all `pip` packages from a `conda` env
((conda list | grep \<pip\>) | awk '{print $1;}') | xargs pip uninstall -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment