How to add debugger to Jupyter Lab

I have the debugger working with my program now!
I found this kernel configuration JSON file:

C:\Users\miket\anaconda3\share\jupyter\kernels\python3\kernel.json

and it had:

“metadata”: {
“debugger”: false
}

I changed it to ‘true’ and now the debugger is working. (I like the way it adds new variables to the watch window as you step through the code.)

So this should all work without any extensions?

4 Likes