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

How can I fix the Python Debugger error(crash) on Visual Studio Code?

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

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

我可以解决它复制粘贴我在另一台计算机上的配置。
尝试将此配置添加到 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"
        ]
    }