How to check if IPython laptop continues to work?

When performing data mining with an IPython laptop, it often takes a lot of time to compute. You are waiting for the star to In [*]:bring out something.

After a few hours, I finally noticed that the kernel was not responding. How to know exactly if the kernel is working or not? Is there a command in the terminal?

+4
source share
1 answer

Yes. You can check this command:

 jupyter notebook list

You will have a list like this:

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

Currently running servers:
http://localhost:8888/?token=311320580ea96e5740459b3668656c9a3f89ff0629937a80 :: /home/user/Projetos/python/bigclima-project
+1
source

Source: https://habr.com/ru/post/1626275/


All Articles