ImportError: No module named ‘pandas.indexes’

I had this error when I created a pkl file with python 2.7 and was trying to read it with python 3.6
I did:

pd.read_pickle('foo.pkl')

and it worked

Leave a Comment