Streamlit Sharing and Pycaret

Hi,
I am trying to deploy model from Pycaret in Streamlit Sharing. But when the vm reads my app.py file I get next error.

ModuleNotFoundError: No module named ‘pycaret’

Traceback:

File "/usr/local/lib/python3.7/site-packages/streamlit/script_runner.py", line 332, in _run_script
    exec(code, module.__dict__)File "/app/sf_diploma/app.py", line 1, in <module>
    from pycaret.classification import load_model, predict_model

what am I doing wrong?
GitHub of my project: https://github.com/testdriver87/sf_diploma

Hello @testdriver87, welcome to thr community!

There should be an accessible sidebar on the bottom right of your app named < Manage App, you should then be able to see in the logs which dependencies have been correctly installed

Can you see any of your requirements.TXT dependencies in there ? If not I suspect it’s because requirements.TXT shoud be requirements.txt instead, respecting the case in .txt.

Best,
Fanilo

oops! you are right! thank you very much!
and sorry for stupid question:)