I’m trying to deploy my app however after fixing the requirements file and adding all the needed files I faced this new bug
File "/home/adminuser/venv/lib/python3.11/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 584, in _run_script
exec(code, module.__dict__)File "/mount/src/cyperparent-grooming-detecation/2.FYPapp/01_🏠_Homepage.py", line 24, in <module>
logo = Image.open("logoPic")
^^^^^^^^^^^^^^^^^^^^^File "/home/adminuser/venv/lib/python3.11/site-packages/PIL/Image.py", line 3277, in open
fp = builtins.open(filename, "rb")
the files already exist in the repo and aI tried to change the path to repo using from pathlib import Path
logoPic = Path(“2.FYPapp”) / “Logo.png”
I’m using python 3.11