Streamlit-option-menu not found in module

Hi all,

I am trying to deploy my app on streamlit cloud and i keep getting an error saying streamlit option menu cannot be found in module.

I have added streamlit in my requirements too.

can someone please help?

this is the link to my github repo

thank you

It appears that you have both a Pipfile and a requirements.txt. Streamlit will use the first one it finds, in this order App dependencies - Streamlit Docs

So, if you delete the Pipfile and Pipfile.lock, then the requirements.txt will be used. Otherwise, you can do pipenv install streamlit-option-menu and delete the requirements.txt

Thank you so much Blackary,

it worked. top man

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.