无法启动内核属性错误:'SelectIOLoop'对象没有属性'asyncio_loop'

问题描述 投票:0回答:1

我尝试:

import numpy as np
像往常一样使用 vscode,但无法启动内核:

enter image description here

AttributeError: 'SelectIOLoop' object has no attribute 'asyncio_loop'.
View Jupyter log for further details.

python版本:python 3.11.1 vscode 版本:vscode 1.84.2

有人可以帮忙吗?谢谢你。

我已经尝试将龙卷风重新安装到最新版本。

python visual-studio-code kernel jupyter tornado
1个回答
0
投票

AttributeError:“SelectIOLoop”对象没有属性“asyncio_loop”。查看 Jupyter 日志以获取更多详细信息。

您需要通过命令将您的tornado版本升级到至少5.0

pip install tornado --upgrade

© www.soinside.com 2019 - 2024. All rights reserved.