I am trying to load an hdf file created by pandas on my local python 3.10, but I am getting
desc = pd.read_hdf(hfile,"descriptions")
...
ValueError: unsupported pickle protocol: 5
I search on StackOverflow, and this sort of error seems to be common. The suggested fix is
pip install pickle5
import pickle5 as pickle
But this does not work here. Any suggestions appreciated!
