Skip to content

Instantly share code, notes, and snippets.

@cwharland
Created September 15, 2016 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cwharland/5a97b5c2cbc2b6498ea3a720c61dc6e5 to your computer and use it in GitHub Desktop.
Save cwharland/5a97b5c2cbc2b6498ea3a720c61dc6e5 to your computer and use it in GitHub Desktop.
Find all packages installed by both conda and pip
conda list | tr -s ' ' | cut -d ' ' -f1 | uniq -c | awk '$1>1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment