在Vscode中使用sudo运行Python脚本

时间:2017-07-17 23:25:25

标签: linux python-3.x visual-studio-code

我想知道(我是编程学生)如何运行 VSCODE sudo 权限,因为我必须运行以测试的脚本需要它。它在 python 中。我还需要在其中运行一些参数('sniff')。我正在使用linux。

2 个答案:

答案 0 :(得分:1)

文档状态仅使用sudo属性设置为true。 https://code.visualstudio.com/docs/python/debugging

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal", 
            "sudo": true
        }
    ]
}

答案 1 :(得分:0)

我找到了部分答案。管理员权限的设置中为// Linux "terminal.integrated.shellArgs.linux": ["-l"]

Integrated Terminal - VSCode Docs