タイトル通りでVSCodeでPythonをデバッグしたら下記のようなエラーが出た。
デバッグ構成を色々変更しても、解決しないし、ターミナルにシェルが出てきたけど、Pythonプログラムが実行されていない。。。
解決方法としては、下記URLにあるように、
https://stackoverflow.com/questions/52462599/visual-studio-code-python-timeout-waiting-for-debugger-connection
Python Debug Consoleという構成を追加する。
{
"name": "Python: Debug Console",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "none"
}
とりあえずこれでできたが、これを毎回しないといけないのだろうか?