美文网首页
在 VScode 中将 anaconda prompt 设置为默

在 VScode 中将 anaconda prompt 设置为默

作者: 汲之郎 | 来源:发表于2022-09-15 02:34 被阅读0次

(类型)CTRL + SHIFT + P

(搜索:)打开设置

(点击:)首选项:打开设置(JSON)

然后添加三行配置:

{

    ... # any other settings you have already added (remove this line)

    "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",

    "terminal.integrated.shellArgs.windows": ["/K", "C:\\Anaconda3\\Scripts\\activate.bat C:\\Anaconda3"],

    "python.condaPath": "C:\\Anaconda3\\Scripts\\conda.exe"

}

相关文章

网友评论

      本文标题:在 VScode 中将 anaconda prompt 设置为默

      本文链接:https://www.haomeiwen.com/subject/qdpkortx.html