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

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

    I tried every method here but something else worked. So I thought of sharing it.

    conda install -c conda-forge hdf5=1.10.5 #newer system's problem
    conda install -c conda-forge hdf5=1.8.18 #for this particular problem
    

    It will forcefully install, either upgrading or downgrading, your hdf5. When u juggle it uninstall keras with it and when u install keras it upgrades the hdf5. So forge alter it to make it work.

提交回复
热议问题