使用Anaconda管理虚拟环境(VScode)

基本语句

查看conda版本
>> conda -V

查看现有的虚拟环境
>> conda env list

创建新虚拟环境
>> conda create -n py36 python=3.6

删除某虚拟环境
>> conda remove --name py38 --all

激活某环境
>> conda activate py36

查看该环境中已有的库
>> conda list

VScode 切换虚拟环境的方法

参考 https://blog.csdn.net/u011412226/article/details/112639630

posted @ 2022-11-22 01:09  beihaixingchen  阅读(299)  评论(0编辑  收藏  举报