-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Closed
Labels
Description
Hello,
I tired to make an import similar to below in the docs
but got the following
Traceback (most recent call last):
File "app/main.py", line 6, in <module>
from fastapi.responses import StreamingResponse
ModuleNotFoundError: No module named 'fastapi.responses'
The workaround I used was
from starlette.responses import StreamingResponse
I'm using fastapi==0.42.0 within docker
Reactions are currently unavailable