如何在Visual Studio Code中获得Code Runner扩展以使用所选的Python解释器?

时间:2019-08-18 04:54:18

标签: python coderunner vscode-code-runner

我想使用Code Runner扩展名在vscode中快速运行活动的python文件。

当我运行它时,我得到消息...

  

找不到Python,但是可以从Microsoft商店安装https://go.microsoft.com/fwlink?linkID=2082640

我希望代码运行器使用活动的vscdode Python解释器。怎么样?

1 个答案:

答案 0 :(得分:2)

这花了一些时间才找到,所以我认为我会在这里为以后的搜索者张贴“问答”。

来自this github post

打开您的settings.json文件并添加此设置。

"code-runner.executorMap": {
  "python":"$pythonPath $fullFileName",
}

?