the python code works completely fine in my system but it gives this error on deployment, Iāve tried various other methods too but it doesnāt work
my github repo link: GitHub - vickypedia-12/logo-Detection
Hi @Vikas_Mourya,
The path in the error message (ād:/codes/LogoDetection/logo-detection-system-811c426b1dea.jsonā) looks like a path on the local machine where you were running your app before deploying.
Youāll need to edit the path when you deploy it on Community Cloud ā either making it a relative path or an absolute path thatās updated to reflect the file structure of your app when itās deployed, which you can figure out by printing the path to your main Python file:
import os
path=os.getcwd()
st.write(path)