jamesguy0121
jamesguy0121

Reputation: 1254

Spyder's stop button on console not working on Windows and Python 3.7

So I accidentlly ran a line of code that I did not want to use. I used the stop current command button in the Spyder IDE, and it seems to have stopped the process, but it will not proceed to a new command line. This is what I am looking at.enter image description here I really do not want to restart the kernel as the thing that I had run previously took some time. I have been searching for what to do and haven't found anything useful. Perhaps because I don't really know what to search for. Anny suggestions?

Upvotes: 1

Views: 1806

Answers (1)

Carlos Cordoba
Carlos Cordoba

Reputation: 34156

(Spyder maintainer here) This problem is not directly related to Spyder but to one of its dependencies called jupyter_client. It's solved by updating to a jupyter_client version equal or greater than 5.2.4

Upvotes: 2

Related Questions