i have been trying to deploy my app since a long time but still i get stuch on this 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/appuser/venv/lib/python3.9/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 552, in _run_script
exec(code, module.__dict__)File "/app/multiple-disease-detection-app/disease_app.py", line 10, in <module>
from streamlit_option_menu import option_menu
2023-06-28 18:23:10.593 Uncaught app exception
Traceback (most recent call last):
File "/home/appuser/venv/lib/python3.9/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 552, in _run_script
exec(code, module.__dict__)
File "/app/multiple-disease-detection-app/disease_app.py", line 10, in <module>
from streamlit_option_menu import option_menu
ModuleNotFoundError: No module named 'streamlit_option_menu'
i have added all the modules in my requirement .txt file but still same error. Here are the contents of my txt file.
numpy
pandas
scikit-learn
streamlit
streamlit-option-menu
pickle5
my github repo link- GitHub - Shreyash0505/Multiple-disease-detection-app