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

前端 未结 8 1471
情深已故
情深已故 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:11

    For some reason uninstalling with conda and then installing hdf5 again with conda is not working. However, if you use pip to uninstall and then conda to install hdf5, it's working.

    So try:

    pip uninstall hdf5
    conda install hdf5
    

提交回复
热议问题