I am trying to read a pickle file 'file.pkl' in windows.
I tried this:
import pandas as pd
import cPickle as cpkl
data = pd.read_pickle('file.pkl')
but I get the error: raise EOFError
This happens also if I try
import cPickle as cpkl
data = cpkl.load(open('file.pkl','rb'))
If I run this on linux there is no problem. How can I read this file on windows?
Thanks