NotImplementedError when loading dataset with Streamlit

Hi,

I have a Streamlit app that was working fine, which basically loads a dataset from HF (CSV-based dataset), but now, the app is crushed and shows the following error " NotImplementedError: Loading a dataset cached in a LocalFileSystem is not supported.". I have no idea what causing this error.

Any ideas on how to solve this error?

Thank you.

2 Likes

Updating datasets should fix the issue

pip install -U datasets 
4 Likes

Same issue for me today. Tried pip install -U datasets but did not work

1 Like

Thank you. The update solved the problem.

Thanks, it works.