VSCode 运行Python出现 Python was not found but can be installed from the Microsoft Store

解决办法

使用 Ctrl + shift + P 搜索 打开用户设置

VSCode 运行Python出现 Python was not found but can be installed from the Microsoft Store_第1张图片
打开以后是下面这样的

VSCode 运行Python出现 Python was not found but can be installed from the Microsoft Store_第2张图片
注意上图的红色箭头, 用 json打开 , 如果是第一次使用 vscode ,可能会啥也没有

第一步 : 需要设置 python的路径
我用的是anaconda , 路径只作为参考

"python.pythonPath": "D:\\Anaconda3\\python.exe",

在 setting.json 里添加如下代码即可 ,这个配置的作用就是 配置 code runner 这个插件的 pythonPath 用来执行python的 额, 就是 python.exe , 后面的 是获取当前执行的文件

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

VSCode 运行Python出现 Python was not found but can be installed from the Microsoft Store_第3张图片

问题解决
VSCode 运行Python出现 Python was not found but can be installed from the Microsoft Store_第4张图片

你可能感兴趣的:(Python学习笔记)