jupyter安装tornado
时间: 2023-11-15 14:03:27 浏览: 120
tornado 安装包
5星 · 资源好评率100%
安装jupyter时需要安装tornado库,但是不同版本的tornado可能会导致一些问题。如果你遇到了问题,可以尝试以下解决办法:
1.降级tornado版本到5.1.1,可以使用以下命令卸载当前版本:pip uninstall tornado,然后安装5.1.1版本:pip install tornado==5.1.1。
2.安装tornado的4.4.3版本,可以使用以下命令:pip install tornado==4.4.3。注意,4.5版本可能会导致jupyter报错。
3.在tornado5.1版本中,tornado.web.asynchronous已经被弃用,在tornado6.0中已经被删除,应该使用coroutines代替。如果你的代码中使用了tornado.web.asynchronous,需要将其替换为coroutines。
阅读全文