Anaconda创建环境、删除环境、环境重命名、查看环境名 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 -