如何在Visual Studio代码上修复Python调试器错误(崩溃)?

时间:2018-04-02 14:03:27

标签: python-3.x debugging visual-studio-code vscode-settings vscode-debugger

每当我尝试开始调试Python时,图片上的这个栏都没有出现,我只得到My代码的输出。我该如何解决?This happens when I start debugging This Bar is missing

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。它突然开始发生了。

我可以解决它复制粘贴我在另一台计算机上的配置 尝试将此配置添加到vs代码中的'launch.json'文件中,并将其用于调试:

    {
        "name": "Python",
        "type": "python",
        "request": "launch",
        "stopOnEntry": true,
        "pythonPath": "${config:python.pythonPath}",
        "program": "${file}",
        "cwd": "${workspaceFolder}",
        "env": {},
        "envFile": "${workspaceFolder}/.env",
        "debugOptions": [
            "RedirectOutput"
        ]
    }