Jupyter notebook: No connection to server because websocket connection fails

前端 未结 6 770
我在风中等你
我在风中等你 2020-12-08 18:26

I have just installed Jupyter over pip (Python version is 3.7.2) in Windows 10, started the jupyter server by calling jupyter notebook, created a new notebook w

6条回答
  •  庸人自扰
    2020-12-08 19:16

    I had the same problem, and following this vvk2001github https://github.com/jupyter/notebook/issues/4399 fixed it for me.

    Uninstall tornado 6 and reinstall tornado 5.

    sudo pip3 uninstall tornado
    sudo pip3 install tornado==5.1.1
    

    @kaleo gave this answer as well to similar question from @Jason Nichols

提交回复
热议问题