Jupyter notebook: No connection to server because websocket connection fails

前端 未结 6 767
我在风中等你
我在风中等你 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

    This problem occurs when you install TensorFlow.js.

    When you install TensorFlow.js, it also installs prompt-toolkit-1.0.14, which causes the problem.

    After installing TensorFlow.js, you just have to install prompt-toolkit-3.0.5 to solve this problem by running the following code in your command prompt:

    pip install prompt-toolkit==3.0.5
    

提交回复
热议问题