Hi, for some reason when I deploy my app on Streamlit, I get the following error:
ModuleNotFoundError: This app has encountered an error. The original error message is redacted to prevent data leaks. Full error details have been recorded in the logs (if you’re on Streamlit Cloud, click on ‘Manage app’ in the lower right of your app).
Traceback:
File "/home/adminuser/venv/lib/python3.11/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 589, in _run_script
exec(code, module.__dict__)File "/mount/src/gen_ai/PDF_Chat/app.py", line 7, in <module>
from langchain_community.vectorstores import FAISS
ModuleNotFoundError: No module named 'langchain_community'
It seems like its not able to find that library but when I run locally, everything works as intended so I’m confused what the issue is.