如下图,在使用 asyncio 调用事件循环 loop 时出现错误 RuntimeError: This event loop is already running
:
import asyncio
async def execute(x):
print('Number:', x)
coroutine = execute(1)
print('Coroutine:', coroutine)
print('After calling execute')
loop = asyncio.get_event_loop()
loop.run_until_complete(coroutine)
print('After calling loop')
运行程序时出现错误 RuntimeError: This event loop is already running
:
查阅资料后,发现所使用的 Python 编辑器为 Spyder,其连接着 IPython 内核,而 IPython 内核本身在事件循环上运行,而 asyncio 不允许嵌套其事件循环,因此会出现如上图的错误信息。
切换到 Pycharm 编辑器即可解决问题: