我想使用Code Runner扩展在 vscode 中快速运行活动的 python 文件。
当我运行它时,我收到消息...
未找到 Python,但可以从 Microsoft Store 安装:https ://go.microsoft.com/fwlink?linkID=2082640
我希望 Code Runner 使用活动的 vscdode Python 解释器。如何?
我想使用Code Runner扩展在 vscode 中快速运行活动的 python 文件。
当我运行它时,我收到消息...
未找到 Python,但可以从 Microsoft Store 安装:https ://go.microsoft.com/fwlink?linkID=2082640
我希望 Code Runner 使用活动的 vscdode Python 解释器。如何?
这需要一些时间才能找到,所以我想我会在这里为未来的搜索者发布问答。
从这个 github 帖子。
打开您的settings.json
文件并添加此设置。
"code-runner.executorMap": {
"python":"$pythonPath $fullFileName",
}