I\'m using pandas/python to save a DataFrame in a HDFStore format. When I apply the my_data_frame.to_hdf(arguments...) command I have an error message:Warni
The only procedure that worked for me on macOS was to create a virtualenv:
virtualenv -p python3 myenv
. myenv/bin/activate
pip3 install h5py==1.10.4 # or whichever version you want
Absolutely nothing else worked!
You may need a brew install hdf5
github issue that did not help:
https://github.com/h5py/h5py/issues/1068