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
Can you give a minimal self-contained example of code that throws this error?
Also, what version of dill and what version of python and what OS did you test with?
Python 3.8.17 (default, Jun 11 2023, 01:54:00)
[Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas as pd
>>> import dill
>>> d = pd.DataFrame(dict(a=pd.Series(dict(q=2,w=3)), b=pd.Series(dict(q=4,t=5))))
>>> s = dill.loads(dill.dumps(d))
>>> s
a b
q 2.0 4.0
t NaN 5.0
w 3.0 NaN
>>>
>>> dill.__version__
'0.3.8.dev0'
>>> pd.__version__
'1.5.3'
Of course, you can see my pandas version is 1.5.3...
Can you give an example like this that triggers the error?
with pandas Version: 2.0.1, when using dill to load data, above code runs into moduleNotFound error
The text was updated successfully, but these errors were encountered: