How can you “clone” a conda environment into the root environment?

前端 未结 4 955
深忆病人
深忆病人 2020-12-04 14:15

I\'d like the root environment of conda to copy all of the packages in another environment. How can this be done?

4条回答
  •  不思量自难忘°
    2020-12-04 15:12

    To make a copy of your root environment (named base), you can use following command; worked for me with Anaconda3-5.0.1:

    conda create --name  --clone base
    

    you can list all the packages installed in conda environment with following command

    conda list -n 
    

提交回复
热议问题