Jupyter notebook接続無反応RuntimeWarning:coroutine'WebSocketHandler.get' was never awaited


2019.3.22更新:jupyter notebook 5.7.5バージョンでバグが解決し、jupyter notebookが5.7にアップグレードされました.5でいい
conda install jupyter notebook=5.7.5

問題の説明
Windows Jupyter notebook接続無反応常にconnecting to kernel、セルをクリックして無反応を実行し、hello worldさえサービス側出力c:anacondapcenvstf 1を出力できない.12\lib\site-packagesotebook\base\zmqhandlers.py:284: RuntimeWarning: coroutine 'WebSocketHandler.get' was never awaited.
[W 14:10:42.472 NotebookApp] WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended.
[I 14:10:42.482 NotebookApp] Serving notebooks from local directory: C:\
[I 14:10:42.482 NotebookApp] The Jupyter Notebook is running at:
[I 14:10:42.482 NotebookApp] http://(yeppc or 127.0.0.1):8888/
[I 14:10:42.483 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[I 14:10:57.726 NotebookApp] 302 GET / (192.168.199.166) 0.00ms
[I 14:11:36.081 NotebookApp] Kernel started: a229546a-8f2f-46d0-ac1c-0fac83b4b238
[I 14:11:36.729 NotebookApp] Adapting to protocol v5.1 for kernel a229546a-8f2f-46d0-ac1c-0fac83b4b238
c:\anacondapc\envs\tf1.12\lib\site-packages
otebook\base\zmqhandlers.py:284: RuntimeWarning: coroutine 'WebSocketHandler.get' was never awaited super(AuthenticatedZMQStreamHandler, self).get(*args, **kwargs) [W 14:11:37.747 NotebookApp] Replacing stale connection: a229546a-8f2f-46d0-ac1c-0fac83b4b238:2f2f91288adb4a658bc8b1b111d87f31

問題の原因
tornadoバージョンの競合、jupyter 5.7.5バージョン以降ではtornado 6はサポートされていません.0. jupyter notebook 5.7.5バージョンは修正済みで、パッケージtornadoバージョンをconda listで表示できます.tornadoを6.0以下に降格するか、jupyter notebookを5.7にアップグレードすることができます.5バージョン以上
解決する
  • jupyter notebookを5.7にアップグレードする.5以上pipアップグレード
  • pip install jupyter notebook==5.7.5
    

    condaによる降格
    conda install jupyter notebook==5.7.5
    
  • またはornadoが6.0に降格した以下のバージョンはpipによって
  • に降格した.
    pip install tornado==4.5.3
    

    condaによる降格
    pip install tornado==4.5.3