I am facing an issue with saving my pickle files. I receive the error when I open the pickle file manually:
Error: C:\Users\df.pkl is not UTF-8 encoded. Saving disabled. See console for more details.
This is what I did for the error to occur:
pickle.dump(df, open('df.pkl', 'rb'))
and then subsequently:
df = pickle.load(open('df.pkl', 'rb'))