lauch.json配置内容
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python3.8",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "D:\\Program Files\\Python\\Python38\\python.exe",//python所在路径
"program": "${file}",
"cwd": "${workspaceFolder}",
"console": "integratedTerminal"
},
{
"name": "Python: Attach",
"type": "python",
"request": "attach",
"port": 5678,
"host": "localhost"
},
{
"name": "Python: Module",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "D:\\Program Files\\Python",
"module": "enter-your-module-name-here",
"console": "integratedTerminal"
},
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "D:\\Program Files\\Python",
"program": "${workspaceFolder}/manage.py",
"console": "integratedTerminal",
"args": [
"runserver",
"--noreload",
"--nothreading"
],
"django": true
},
{
"name": "Python: Flask",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "D:\\Program Files\\Python",
"module": "flask",
"env": {
"FLASK_APP": "app.py"
},
"args": [
"run",
"--no-debugger",
"--no-reload"
],
"jinja": true
},
{
"name": "Python: Current File (External Terminal)",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "D:\\Program Files\\Python",
"program": "${file}",
"console": "externalTerminal"
}
]
}