Closed eugeniashurko closed 3 years ago
Fixed RuntimeError: This event loop is already running on batch operations executed in Jupyter (pinned nest-asyncio>=1.5.1).
RuntimeError: This event loop is already running
nest-asyncio>=1.5.1
The error happens, when there is a new version of tornado (>=5) and an old version of nest-asyncio, so there are two solutions:
tornado
nest-asyncio
4.X
1.5.X
Fixed
RuntimeError: This event loop is already running
on batch operations executed in Jupyter (pinnednest-asyncio>=1.5.1
).The error happens, when there is a new version of
tornado
(>=5) and an old version ofnest-asyncio
, so there are two solutions:tornado
to4.X
,nest-asyncio
to1.5.X
(which is a better solution, in order not to depend on an outdated package)