Answers for "how to copy conda environment to another machine"

3

how copy and create same conda environment

#export your Anaconda environment using:
conda env export > environment.yml
#And recreate it using:
conda env create -f environment.yml
Posted by: Guest on July-30-2021

Code answers related to "how to copy conda environment to another machine"

Python Answers by Framework

Browse Popular Code Answers by Language