comment sauvegarder l'environnement conda dans

#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
Mohammed Albaqer