首页 > 解决方案 > 如何解决安装 Jupyter 的错误?

问题描述

我是 python 新手,我尝试jupyter使用此命令进行安装

sudo pip install jupyter

但得到了

Found existing installation: tornado 3.1.1
Cannot uninstall 'tornado'. It is a distutils installed project and 
thus we cannot accurately determine which files belong to it which 
would lead to only a partial uninstall.

我知道有不止一个版本的龙卷风,但无法修复它

谢谢你的帮助

标签: pythonjupyter-notebookjupyter

解决方案


pip uninstall tornado 然后做pip install tornado==4.0.0


推荐阅读