我想使用Code Runner扩展名在vscode中快速运行活动的python文件。
当我运行它时,我得到消息...
找不到Python,但是可以从Microsoft商店安装https://go.microsoft.com/fwlink?linkID=2082640
我希望代码运行器使用活动的vscdode Python解释器。怎么样?
答案 0 :(得分:2)
这花了一些时间才找到,所以我认为我会在这里为以后的搜索者张贴“问答”。
打开您的settings.json
文件并添加此设置。
"code-runner.executorMap": {
"python":"$pythonPath $fullFileName",
}
?