Answers for "how to backup conda environment in"

0

how to backup conda environment in

#to save your conda environment as txt file write this in the bash
conda list --explicit > env.txt
#to use this file to back-up your environment
conda install --name myenv --file env.txt
Posted by: Guest on May-23-2021

Code answers related to "how to backup conda environment in"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language