いつもお世話になっております。
vscodeでstreamlitのデバッグ実行についての質問です。
開発環境
windows10
python 3.9.5
streamlit 1.10.0
vscode 1.68.0
の環境で開発していますが、vscodeで、デバッグ実行をしても、ブレークポイントが効かないです。
launch.jsonの設定は下記のように設定しています。
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Module",
"type": "python",
"request": "launch",
"module": "streamlit",
"console": "integratedTerminal",
"args": [
"run",
"${file}",
"--server.port",
"8080"
]
}
]
}
上記開発環境でデバッグ実行に成功されている方がおられたら、設定方法を御伝授お願いいたします。

あなたの回答
tips
プレビュー