欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jupyter notebook中出现ValueError: signal only works in main thread 报错 即 长时间in[*] 解决办法

程序员文章站 2023-11-11 17:22:34
我在jupyter notebook中新建了一个基于py3.6的kernel用来进行tensorflow学习 但是在jupyter notebook中建立该kernel时,右上角总是显示 服务正在启动中,请稍候(kernel is starting,please wait)同时 kernel中显示 ......

我在jupyter notebook中新建了一个基于py3.6的kernel用来进行tensorflow学习

但是在jupyter notebook中建立该kernel时,右上角总是显示

服务正在启动中,请稍候(kernel is starting,please wait)同时 kernel中显示 in[*] 表示服务一直被占用

在cmd中发现报错

error:tornado.general:uncaught exception in zmqstream callback

……

valueerror: signal only works in main thread

经过试验,最终发现是包的版本冲突

pip install "pyzmq==17.0.0" "ipykernel==4.8.2"

执行以上后重启即可

 

参考:https://blog.csdn.net/loovelj/article/details/82184223