Home > other >  Python debugger in spyder stops at line 2
Python debugger in spyder stops at line 2

Time:02-16

when i am trying to debug my code the debugger stops at line 2 and doenst respond to any commands (like go to next line).

I am using python 3.9.7.

This is what the console looks like: enter image description here

If I try to stop the debugger this happens: enter image description here The only thing I can do then is close the console.

CodePudding user response:

I had recently the same problem (using Python 3.8) and the solution was to revert an recent upgrade of qtconsole from 5.1.1 to 5.2.2. In case you use conda, the command to revert would be "conda install qtconsole=5.1.1".

  • Related