(python)vscode中debug时指定conda虚拟环境

问题描述

如题,在vscode中debug时,默认使用的是base虚拟环境,这常常无法满足要求。

解决方法

step1:开启debug,会新建一个console。
(python)vscode中debug时指定conda虚拟环境_第1张图片

step2:结束debug。
step3:在新建的这个console中使用conda activate xxx激活需要使用的环境。
(python)vscode中debug时指定conda虚拟环境_第2张图片
step4:重新debug,这时就会使用刚刚激活的环境。

你可能感兴趣的:(Python,python,vscode,conda)