Answers for "how to save conda environment as a file"

6

conda export environment

# conda export environment.yml
conda env export > environment.yml

# conda create environment from file (Same environment name)
conda env create -f environment.yml
Posted by: Guest on February-09-2021
1

conda create environment from file

conda env create -f environment.yml
Posted by: Guest on March-16-2020

Code answers related to "how to save conda environment as a file"

Python Answers by Framework

Browse Popular Code Answers by Language