Created
September 15, 2016 03:25
-
-
Save cwharland/5a97b5c2cbc2b6498ea3a720c61dc6e5 to your computer and use it in GitHub Desktop.
Find all packages installed by both conda and pip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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