当前位置: 代码迷 >> 综合 >> jupyter notebook:Bad file descriptor (C:\ci\zeromq_1602704446950\work\src\epoll.cpp:100)
  详细解决方案

jupyter notebook:Bad file descriptor (C:\ci\zeromq_1602704446950\work\src\epoll.cpp:100)

热度:22   发布时间:2023-12-08 16:18:23.0

**问题描述:**启动jupyter notebook,然后当点击其他的ipynb文件或者新建python3后始终处于In[]状态(无法输出结果),最后发现是启动后报错
**错误代码:**Bad file descriptor (C:\ci\zeromq_1602704446950\work\src\epoll.cpp:100)
问题原因:安装jupyter notebook的时候,会自动安装ipykernel, 然后自动安装了高版本的pyzmq(pyzmq 22.0.2).
解决方法:进入Anaconda prompt环境(输入以下命令,更换版本)
pip uninstall pyzmq
pip install pyzmq==19.0.2
结果:重新启动jupyter notebook发现不会报此错,且代码可以运行,而不是处于In[]

  相关解决方案