I get this error while deploying the streamlit app on the cloud. The app runs locally without any errors.
Help is needed ASAP to submit for a Hackathon.
Thank you for sharing your repo. There are a couple of issues with your requirements file:
Remove glob from line 5 of requirements.txt. glob is part of The Standard Python Library. Only include packages in your requirements file that are not distributed with a standard Python installation. If any of the modules from base Python are included in the requirements file, you will get an error when you try to deploy. See App dependencies.
Replace sklearn==1.1.1 from line 3 with scikit-learn==1.1.1. sklearn is not a real package on PyPI.
Once you’ve made the above changes, the dependencies issue will go away. You may have other errors in your app (e.g. FileNotFoundError: [Errno 2] No such file or directory: 'ssf-ibm-z\\headings.csv'), but those are unrelated to the dependency installation issues in this thread.