Issue
I am using VS Code with #%%
in the python files which allows me to execute cells in the interactive console. It also allows me to debug cells. However, it doesn't allow me to debug external libraries while debugging a cell. I already set the flag just_my_code
to false
in the launch.json file. This works fine when using the normal debugger, but not when using the cell debugger.
Solution
I found the solution, turns out that there is a field in the settings for this purpose.
We should add jupyter.debugJustMyCode": false
to settings.json.
Answered By - Roger Trullo
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.