📜  如何在 - Shell-Bash 代码示例中备份 conda 环境

📅  最后修改于: 2022-03-11 14:51:24.281000             🧑  作者: Mango

代码示例1
#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