Issue
The Jupyter notebook keeps saying Connecting to kernel
, which never reaches finally popping an error,
A connection to the notebook server could not be established. The notebook will continue trying to reconnect. Check your network connection or notebook server configuration.
So the asterisk on the command line stays forever.
The strange part is, iPython on terminal works FINE.
Here are what I tried:
- Change the browser from Chrome to Firefox
- Change port number into something else than '8888'
- Uninstalled the Jupyter and re-installed it
Anybody with similar issues?
Solution
I had a similar issue. It was caused by the tornado-package and I had to downgrade it.
sudo pip3 uninstall tornado
sudo pip3 install tornado==5.1.1
See Jupyter notebook: No connection to server because websocket connection fails
Answered By - Andreas Buchberger
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.