在Visual Studio代码中为Python创建简单的任务

时间:2018-01-12 14:21:41

标签: python json visual-studio-code

我已经看过这个问题: 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 - 这两个都有效!

0 个答案:

没有答案