我已经看过这个问题: How to execute Python code from within Visual Studio Code
但所有这些答案都是关于旧版本的任务(" 0.1.0"或" 0.2.0")。 VS Code现在是版本" 2.0.0"并且一些参数已经改变。
我试图通过Run Task
:
tasks.json:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run File",
"command": "python ${file}",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
但它不起作用!错误讯息:
ID 8的终端不存在(已经处理掉了吗?)
这里有什么不妥?
我可以使用Run Python File in Terminal
或只在终端输入python myFile.py
- 这两个都有效!