Skip to content

Instantly share code, notes, and snippets.

@ericmjl
Forked from cwharland/dupe_packages.sh
Created September 15, 2016 04:20
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 ericmjl/57953a1526e83c7052a57b803281e448 to your computer and use it in GitHub Desktop.
Save ericmjl/57953a1526e83c7052a57b803281e448 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