使用Anaconda新建指定Python版本的虚拟环境

创建指定python版本的虚拟环境

conda create --name AI python=3.10

查看当前系统下的虚拟环境列表

conda env list

进入指定的虚拟环境

conda activate name

删除指定的虚拟环境

conda remove -n name --all
添加新评论