Answers for "create environment in anaconda using yaml file"

0

conda save environment to yaml

# save conda env to .yml 
conda env export > environment.yml
Posted by: Guest on January-22-2021
1

conda create environment from yml

# Basic syntax:
conda create --name environment_name --file environment.yml
Posted by: Guest on June-26-2021

Code answers related to "create environment in anaconda using yaml file"

Browse Popular Code Answers by Language