I have a simple streamlit app that connects to an SQL server with pyodbc. it's working fine locally but when I try to deploy on streamlit Cloud I have this error:
import pyodbc
ModuleNotFoundError: No module named 'pyodbc'
in my Git I have the requirement.txt that contains:
And I have also the packages.txt that contains:
Someone Knows what's wrong in the deployment process?
Thanks!
The requirements file should be named "requirements.txt" rather than "requirement.txt"