1

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

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

未找到 Python,但可以从 Microsoft Store 安装:https ://go.microsoft.com/fwlink?linkID=2082640

我希望 Code Runner 使用活动的 vscdode Python 解释器。如何?

4

1 回答 1

8

这需要一些时间才能找到,所以我想我会在这里为未来的搜索者发布问答。

这个 github 帖子
打开您的settings.json文件并添加此设置。

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

于 2019-08-18T04:54:18.017 回答