You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting error when use disk cache with pandas 2.0 : ModuleNotFoundError: No module named 'pandas.core.indexes.numeric'
at diskcache/core.py", line 282, in fetch
return pickle.load(reader)
It worked if i downgrade pandas to version 1.5.x, how to resolve this ?
The text was updated successfully, but these errors were encountered:
That's just that you've saved something with Pandas 1.5, and now that you try to load the same data with Pandas 2.0, the modules unpickling attempts to find are not there anymore.
I'm getting error when use disk cache with pandas 2.0 : ModuleNotFoundError: No module named 'pandas.core.indexes.numeric'
at diskcache/core.py", line 282, in fetch
return pickle.load(reader)
It worked if i downgrade pandas to version 1.5.x, how to resolve this ?
The text was updated successfully, but these errors were encountered: