Hello,
I try to deploy a small web app.
Nothing complicated apparently, since only pandas and streamlit were in my requirements at first.
- First, I had issues between latest verison of numpy and pandas.
So I added in my requirements an older version of numpy. it worked well until I tried to deploy the app - Deployment issue : when I try to deploy the app, it always fails.
I tried to change my requirements :
a) No numpy but then incompatibility beteen numpy and pandas (issue 1)
b) Older numpy but impossible deployment (conflict maybe between the old numpy and the numpy streamlit wants to install with pandas ?)
c) Older version of streamlit, pandas but did not work either
I tried to solve the issue with some posts I have read but nothing worked
For instance, I have read that I should install pandas like this :
pip install --no-cache-dir --no-binary :all: pandas
But did not work.
I also tried in my requirements.txt to not fix the version of streamlit, someone wrote that it worked by just writing “streamlit” in requirements.txt. Did not work either.
My Git Hub repository is :
Thanks in advance for your help !