How to enable using launch.json
#1573
Unanswered
Zhaoyilunnn
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
Thanks for the great project.
I'm working on a python project, with a
.vscode/launch.jsonin the project root, withjustMyCodesetting tofalsebecause I'd like to stepping into an external library{ "version": "0.2.0", "configurations": [ { "name": "Python Debugger Configuration", "type": "debugpy", "request": "launch", "justMyCode": false } ] }However, after launching the debugger, I still cannot step into the code of otherl libraries, with a warning message
My question is: How do I know whether the
launch.jsonis loaded or not? So that I can understand if this is a mis-configuration or a limitation of debugpyThanks in advance
Beta Was this translation helpful? Give feedback.
All reactions