VSCODE python エラー「Timeout waiting for debugger connection」が発生した場合の対処法

VSCODE python エラー「Timeout waiting for debugger connection」が発生した場合の対処法

VSCODE上で、pythonを実行しようとした際にエラー「Timeout waiting for debugger connection」が発生した場合の対処法を記述してます。自分は「launch.json」の「console」の設定を変更することで改善しました。

環境

  • OS windows10 pro
  • vscode 1.74.3

エラー全文

コードを実行時に発生

Time out waiting for launcher to connect

画像

拡張機能は、以下を使用してます。

対処法

「launch.json」を開いて「console」の設定を「internalConsole」と指定する

{
    // IntelliSense を使用して利用可能な属性を学べます。
    // 既存の属性の説明をホバーして表示します。
    // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "xxxxxxx",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "internalConsole",
            "justMyCode": true
        }
    ]
}

「launch.json」はエラーメッセージから開いてもいいし、以下の歯車マークをクリックしても開くことができます。