打开vscode,选择扩展商店,搜索python,点击安装
点击 文件——首选项——设置,点击右上角的“打开设置(json)”,打开配置文件 Settings.json
输入一下内容,D:\lyf\python\data\Python-2.7.9\python.exe是我的安装路径,选择自己的就行
{
"python.defaultInterpreterPath": "D:\\lyf\\python\\data\\Python-2.7.9\\python.exe",
"python.linting.flake8Enabled": true,
"python.formatting.provider": "yapf",
"python.linting.flake8Args": ["--max-line-length=248"],
"python.linting.pylamaEnabled": false
}
到这里就配置好了,接下来,我们来测试一下
新建一个py后缀的文件,比如 test.py
在这个文件里面输入: print ("hello world")
保存并运行,在终端输入 python test.py 运行test.py
出现以上结果即配置完成
版权归原作者 烟雨徐行00 所有, 如有侵权,请联系我们删除。