launch.json 配置
{
“version”: “0.2.0”,
“configurations”: [
{
“name”: “Python”,
“type”: “python”,
“request”: “launch”,
“stopOnEntry”: true,
“pythonPath”: “config.python.pythonPath","program":"{config.python.pythonPath}",
"program": "config.python.pythonPath","program":"{file}”,
“cwd”: “${workSpaceRoot}”,
“args”: [
“param_one”,
“param_twe”
],
“debugOptions”: [
“WaitOnAbnormalExit”,
“WaitOnNormalExit”,
“RedirectOutput”
]
}
]
}
setting.json 配置
{
“editor.fontSize”: 18,
“python.pythonPath”: “C:\Python\Python37-32\python.exe”,
“python.linting.enabled”: false
}
Python安装路径