我正在尝试使用Python 3内核(检查它是否在kernelspec列表中)。
我在第一个单元格print("test")
中创建一个笔记本。
执行单元格时,什么都没有发生。我只看到In[*]
。它似乎永远不会执行。
最终我得到:
Connection failed
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.
这是唯一运行的笔记本电脑。我可以看到Juptyer仍在终端中运行。
我在运行最新版Chrome的Mac OSX上。通过pip3安装了Jupyter,通过Brew安装了python3。
在Chrome控制台中,我看到的唯一错误是:
kernel.js:461 WebSocket connection to 'ws://localhost:8888/api/kernels/b9458856-e8f1-43b1-b91e-c50a9bb637bb/channels?session_id=7ded0972f5ce4517af94f45d6e0e16cf' failed: Error during WebSocket handshake: Unexpected response code: 200
我在终端上看到的唯一错误是:
Warning: coroutine 'WebSocketHandler.get' was never awaited
super(AuthenticatedZMQStreamHandler, self).get(*args, **kwargs)
其他一切看起来都很正常。
有什么想法会导致websocket返回200?
更新: 笔记本服务器的版本为:5.7.4 服务器正在此版本的Python上运行: Python 3.7.2(默认,2019年2月12日,08:16:38) [Clang 10.0.0(clang-1000.11.45.5)]
答案 0 :(得分:3)
在Mac上使用python3 virtualenv出现了相同的问题
在您所处环境或venv的终端中,或尝试:
sudo pip3 uninstall tornado
sudo pip3 install tornado==5.1.1
信用至: vvk2001github,位于:https://github.com/jupyter/notebook/issues/4399