Vscode python Debug环境异常Timed out waiting for launcher to connet

文章目录

  • launch.json配置console

launch.json配置console

{
    "configurations": [
        {
            "name": "Python: Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "internalConsole"
        }
    ]
}

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