Hi!
I’m excited to deploy my first web app to the Streamlit Community Cloud. I’ve tested the app locally and it works (in a virtual env with the limited dependencies in the “requirements.txt” file). But I got this error when trying to deploy- No module named ‘ydata_profiling’
At first I thought maybe the ydata-profiling package was NOT in a place where it could be installed, but my local conda seems to pull that library from pypi so I’m not sure why the Streamlit Community Cloud doesn’t find it…
With regards to debugging, I’ve tried being less specific about the package versions, but it didn’t seem to make a difference. Looks like the naming of this package has changed (or is changing?) recently.
As an aside, I obtained the starter code from this nice YT tutorial.
Do you think there’s something I can change in my code to use the ProfileReport?
Requirements.txt
python-dotenv==1.0.0
pandas==2.0.3
numpy==1.23.5
streamlit==1.25.0
streamlit-pandas-profiling==0.1.3
ydata-profiling==4.4.0
pandas-profiling==3.6.6
Many thanks in advance