Skip to content

Instantly share code, notes, and snippets.

@jgkim2020
Created February 20, 2020 04:18
Show Gist options
  • Save jgkim2020/04137858b8fddbd01f3eb33565661293 to your computer and use it in GitHub Desktop.
Save jgkim2020/04137858b8fddbd01f3eb33565661293 to your computer and use it in GitHub Desktop.
How to export conda environment
conda env export > env.yml --no-builds # do not specify build (--no-builds) for cross-platform compatibility
conda env create --name exported-env -f env.yml
conda env remove --name exported-emv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment