User Tools

Site Tools


howto:export_an_anaconda_environment_to_a_file

Export an Anaconda Environment to a File

If you want others to have the exact same Python environment as yours truly, export your Anaconda environment with:

conda env export | grep -v "^prefix" > somefile.yml

You then just need to pass on the file (somefile.yml). The new environment may be created with:

conda env create -f somefile.yml 
howto/export_an_anaconda_environment_to_a_file.txt · Last modified: 2021/10/13 11:03 by jp