Stopping the Prodigy server in a Jupyter Notebook

Hi Vigno,

better than restarting your computer, you can write in a Jupyter cell:

!netstat -ano | findstr :8080

This looks for the PID (Process ID) of the web server on the port 8080, in this case Prodigy, in order to be able to terminate it with the following command:

!Taskkill /PID <PIDProdigy> /F 

This works in windows and propably similiar for other OS. You could even probably automate this with a small script/ function.

Best,
Paul

1 Like