python Jupyter笔记本|地址错误(C:\projects\libzmq\src\epoll. cpp:100)

bqf10yzr  于 2023-05-05  发布在  Python
关注(0)|答案(2)|浏览(284)

我正在使用Python的最新版本:

Python 3.10.2

我已经安装了Jupyter Notebook。

pip install jupyter

稍后我想用cmd启动Jupiter notebook,如下所示:

Jupyter notebook

以前它工作得很好很顺利。第二天,出现了一些错误。下面是命令窗口的一些屏幕截图和文本。
[This这是我在开始时收到的第一个错误][1] [1]:https://i.stack.imgur.com/G1L4z.png
[关闭程序后出现此错误][2] [2]:https://i.stack.imgur.com/B22k0.png
[Its[3] [3]:https://i.stack.imgur.com/g71x7.png
下面是命令窗口的文本:

[W 20:36:29.590 NotebookApp] Notebook Desktop/AI Projects/NLP/Untitled.ipynb is not trusted
Bad address (C:\projects\libzmq\src\epoll.cpp:100)
[I 20:36:29.929 NotebookApp] Kernel started: 56297648-4e26-4a5b-8d25-1f990c6e422b, name: 
python3
Bad address (C:\projects\libzmq\src\epoll.cpp:100)
Exception in thread IOPub:
Traceback (most recent call last):
Bad address (C:\projects\libzmq\src\epoll.cpp:100)
File "C:\Users\ABDUL RAUF\AppData\Local\Programs\Python\Python310\lib\threading.py", line 
1009, in _bootstrap_innerself.run()
File "C:\Users\ABDUL RAUF\AppData\Local\Programs\Python\Python310\lib\threading.py", line 
946, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\ABDUL RAUF\AppData\Local\Programs\Python\Python310\lib\site- 
packages\ipykernel\iostream.py", line 82, in _thread_main
self.io_loop.start()
File "C:\Users\ABDUL RAUF\AppData\Local\Programs\Python\Python310\lib\site- 
packages\tornado\platform\asyncio.py", line 199, in start

jupyter Notebook的版本:

jupyter --version
Selected Jupyter core packages...
IPython          : 8.1.1
ipykernel        : 6.9.2
ipywidgets       : 7.7.0
jupyter_client   : 7.1.2
jupyter_core     : 4.9.2
jupyter_server   : not installed
jupyterlab       : not installed
nbclient         : 0.5.13
nbconvert        : 6.4.4
nbformat         : 5.2.0
notebook         : 6.4.10
qtconsole        : 5.2.2
traitlets        : 5.1.1
ryoqjall

ryoqjall1#

netsh winsock reset

帮我解决问题似乎有一些VPN软件修改了你的默认Winsock设置,从而窃听了pyzmq。

v8wbuo2f

v8wbuo2f2#

netsh winsock reset的答案对我来说是有效的,谢谢。
此外,我发现将pyzmq降级到19. 0. 2也可以工作,但使用这种方法限制我只能使用python3. 7和3. 8。
也许开发人员在发布新版本时没有注意到这个VPN问题。

相关问题