尚方咸鱼
-
【快速学】Anaconda创建虚拟环境
创建/删除环境: #查看conda虚拟环境列表 conda env list #创建一个名为testpy的python3.10环境 conda create -n testpy python==3.10 #进入环境testpy activate testpy #退出环境 deactivate #删除环境testpy conda remove -n testp…
创建/删除环境: #查看conda虚拟环境列表 conda env list #创建一个名为testpy的python3.10环境 conda create -n testpy python==3.10 #进入环境testpy activate testpy #退出环境 deactivate #删除环境testpy conda remove -n testp…