有的同學(xué)在啟動(dòng)jupyter notebook
或者jupyter lab
的時(shí)候會(huì)出現(xiàn)下列錯(cuò)誤:
Bad file descriptor (C: \ci\zeromq_1602704446950\work\src\epoll.cpp:100)
經(jīng)過(guò)網(wǎng)絡(luò)搜索發(fā)現(xiàn),這是一個(gè)常見的錯(cuò)誤蕴潦,在stackoverflow 上面也有stackoverflow.com
解決方案就是卸載重新安裝pyzmq
具體如下:
1. 打開`anaconda Powershell prompt:
2. 輸入 pip uninstall pyzmq
以卸載pyzmq
系統(tǒng)會(huì)問你(y/n) yes or no茴迁, 輸入
y
.3.\輸入 pip install pyzmq==19.0.2
重新安裝 pyzmq
Done!
接下來(lái)就可以正常使用jupyter notebook
和 jupyter lab
了。