Jupyter notebook: No connection to server because websocket connection fails

前端 未结 6 765
我在风中等你
我在风中等你 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 18:57

    The problem was that there was an incompatibility between the packages tornado 6 and notebook 5.7.4. notebook was updated on March 6th 2019 in order to solve this issue. Right now, the best way to solve it is the following:

    Using pip

    $ pip install -U jupyter
    

    Using pipenv

    $ pipenv update jupyter
    

提交回复
热议问题