Warning! ***HDF5 library version mismatched error*** python pandas windows

前端 未结 8 1531
情深已故
情深已故 2020-12-30 07:55

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

8条回答
  •  别那么骄傲
    2020-12-30 08:13

    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

提交回复
热议问题