Skip to content

Instantly share code, notes, and snippets.

@markusritschel
Created July 3, 2020 16:49
Show Gist options
  • Save markusritschel/be261ae6a617b7142cd13747ab98c393 to your computer and use it in GitHub Desktop.
Save markusritschel/be261ae6a617b7142cd13747ab98c393 to your computer and use it in GitHub Desktop.
Compare two conda environments
conda list -n env1 --export > env1-packages.txt
conda list -n env2 --export > env2-packages.txt
diff env1-packages.txt env2-packages.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment