Home > Net >  Anaconda: not creating environment.yml file
Anaconda: not creating environment.yml file

Time:01-01

I'm using conda env export to create an environment.yml file as the documentation suggest. Although the .yml file content displays on the Anaconda Prompt, it doesn't seems to create any file (neither on current or any directory).

Where could the file be stored? / Why it doesn't create a file?

CodePudding user response:

You need to redirect the output to a file. See this page for more details.

You're looking for conda env export > name-your-env-file-here.yml.

  • Related