Vscode调试python的配置文件launch.json

我一般使用code runner运行python文件,但是调试python的时候没办法用code runner,所示Vscode在调试python代码的时候需要写一个配置文件,可以通过添加配置文件自动生成,自动生成的配置文件的当前工作路径cwd(current work directory)默认是打开的文件夹(${workspaceFolder}),如果代码的目录层级比较深,在使用相对路径时可能会报错,大多数情况下我们更希望cwd是我们运行的代码所在的文件夹(${fileDirname}),因此我写了这个配置文件,使用的时候可以根据需要选择cwd,注释掉另外一个。

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: 当前文件",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "justMyCode": true,
            // "cwd": "${workspaceFolder}", //把当前路径设置为打开的文件夹
            "cwd": "${fileDirname}", //当前路径设置为运行的代码所在的文件夹
            "stopOnEntry": false,   //进入程序就暂停
        }
    ]
}

你可能感兴趣的:(vscode,python,json)