Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #backup #conda #environment
ADD COMMENT
Topic
Name
6+6 =