conda虚拟环境配置

命令行输入,conda -V 确定conda版本
在这里插入图片描述
创建自己的conda虚拟环境

activate 回车在这里插入图片描述

conda create -n 名字 python=版本号

执行命令

conda虚拟环境配置_第1张图片

确认执行命令
输入yconda虚拟环境配置_第2张图片

创建完成
conda虚拟环境配置_第3张图片

激活环境

conda activate 名字

在这里插入图片描述

进入python环境

python

在这里插入图片描述

退出

exit()

conda deactive

在这里插入图片描述

你可能感兴趣的:(配置环境,conda)