Anaconda建立環境、刪除環境、環境重新命名、檢視環境名

.Hw發表於2020-11-10

1.建立環境

conda create -n test python=3.5 # test為環境名,3.5為python的版本號
 

    2.刪除環境

    conda remove -n test --all
     

      3.環境重新命名

      conda create -n tf --clone rcnn #把環境 rcnn 重新命名成 tf
      conda remove -n rcnn --all 
      #conda 其實沒有重新命名指令,實現重新命名是通過 clone 完成的,分兩步:1.先 clone 一份 new name 的環境。2.刪除 old name 的環境。
       
      • 1
      • 2
      **

      4.檢視環境名

      conda info -e
       

        相關文章