Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check whether an IPython notebook is still running?

When doing data mining with an IPython notebook, often the calculation takes a long time. You wait for the In [*]: star to output something.

After several hours, I finally notice that the kernel is unresponsive. How exactly do I know whether the kernel is running or not? Is there a command in the Terminal?

like image 850
ShanZhengYang Avatar asked Oct 30 '22 10:10

ShanZhengYang


1 Answers

Yes. You can check using this command:

 jupyter notebook list

You will have a list like that:

(virtualenv) user@machine ~/Projetos/python $ jupyter notebook list

Currently running servers:
http://localhost:8888/?token=311320580ea96e5740459b3668656c9a3f89ff0629937a80 :: /home/user/Projetos/python/bigclima-project
like image 130
Andre Araujo Avatar answered Nov 24 '22 20:11

Andre Araujo