본문 바로가기
기록/Python

[Python] 파이썬 asyncio RuntimeError 해결 방법

by 자임 2022. 7. 25.

오류 :

RuntimeError: Install Flask with the 'async' extra in order to use async views.

 

해결방법 :

1. 파이참 터미널에 pip install aioflask

2. flask 임포트문 변경 -> from aioflask import Flask, request, Response

 

참고 :

https://stackoverflow.com/questions/70321014/runtimeerror-install-flask-with-the-async-extra-in-order-to-use-async-views