Cloning root environment with Anaconda

后端 未结 2 1119
迷失自我
迷失自我 2020-12-28 15:24

Going through one of (very few available) tutorials on Anaconda, I tried:

$ conda create -n rootclone --clone root

This failed:

         


        
2条回答
  •  感情败类
    2020-12-28 16:06

    Use following command to clone default root environment of Anaconda, the root environment is named as base. This worked for me with Anaconda3-5.0.1

    conda create --name  --clone base
    

提交回复
热议问题