前提

我将虚拟环境添加至jupyter notebook的方法是参考博客如何在conda虚拟环境开启jupyter-notebook或使用指定conda环境作为jupyter-notebook的内核,一键将我创建的虚拟环境添加进了jupyter notebook。我按照上面那篇博客操作过很多次都没有问题,但是这一次在运行一个有pytorch的虚拟环境的时候却出问题了。

problem1

首先我第一个遇到问题就是,jupyter notebook连接不上我虚拟环境的内核,总给我报这个
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.

我在网上查阅了大量的资料,结果都是说tornado的版本和Jupyter的版本对不上,才会产生上面的问题。

solution1

第一步

我删除了我的nb_conda,执行指令conda uninstall nb_conda

第二步

然后参考Jupyter notebook内使用(添加)虚拟环境中方法二将虚拟环境添加进jupyter notebook的。

第三步

再执行指令conda install tornado==4.5

solution2

或者你刚开始就是参考Jupyter notebook内使用(添加)虚拟环境中方法二将虚拟环境添加进jupyter notebook的。那么你直接执行conda install tornado=4.5即可。

参考博客

如何在conda虚拟环境开启jupyter-notebook或使用指定conda环境作为jupyter-notebook的内核
Jupyter notebook内使用(添加)虚拟环境
jupyter报错AttributeError: type object IOLoop has no attribute initialized
‘IOLoop‘ has no attribute ‘initialized‘ or init() got an unexpected key argument ‘io_loop‘

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐