-
Hi, there: I am pretty new in fastapi and deta. I follow the tutorial code, and deploy micro successfully. from fastapi import FastAPI, File, UploadFile
from fastapi.responses import HTMLResponse, StreamingResponse
from deta import Deta
app = FastAPI()
deta = Deta() # configure your Deta project
drive = deta.Drive("photos") # access to your drive" The Visor shows the following message. What do I miss?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
hi @dlink1999 add |
Beta Was this translation helpful? Give feedback.
-
I just ran the code you provided as is with no errors. the error just says that you have an old deta sdk installed and by adding one thing you could try is to remove |
Beta Was this translation helpful? Give feedback.
I just ran the code you provided as is with no errors. the error just says that you have an old deta sdk installed and by adding
deta
to the reqs file and re-deploying the problem should be resolved.one thing you could try is to remove
deta
deploy, then add it back in again and then redeploy.