소소한 컴퓨터 이야기

asyncio.run() cannot be called from a running event loop

by Cori

기본적인 asynco 코드를 실행하는데도 자꾸만 asyncio.run() cannot be called from a running event loop 문제가 발생한다. 

import asyncio
async def main():
    print(1)
    
asyncio.run(main())

다음 코드를 실행하면 해결할 수 있다.

!pip3 install nest_asyncio
import nest_asyncio 
nest_asyncio.apply()

오류가 언제 발생했냐는 듯이 깔끔하게 해결됐다.


Ref.

https://pypi.org/project/nest-asyncio/

'Errors > AI' 카테고리의 다른 글

Failed building wheel for llama-cpp-python  (2) 2024.07.09

블로그의 정보

코딩하는 오리

Cori

활동하기