vscode python task.json2.0.0

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_36501295/article/details/81558697
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "taskName": "Python",
            "type": "shell",
            "command": "${workspaceRoot}/env/bin/python3.5",
            "args": [
                "${file}"
            ],
            "presentation": {
                "reveal": "always",
                "panel": "shared"
            },
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

猜你喜欢

转载自blog.csdn.net/qq_36501295/article/details/81558697