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

前端 未结 8 1465
情深已故
情深已故 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:28
     Headers are 1.8.15, library is 1.8.18
    

    Your error information shown this, so you need install the 1.8.15 version.

    conda install -c anaconda hdf5=1.8.15
    
    0 讨论(0)
  • 2020-12-30 08:28

    In case someone is having this problem and no amount of uninstalling with pip or conda or anything will work: I went through every /lib path and manually deleted libhdf5* files, then installed hdf5 with macports.

    0 讨论(0)
提交回复
热议问题