-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unsupported HDF5 version: 1.10.0 #76
Comments
Duplicate. This issue was already raised in #67 and closed because they have no plans to support it. Not a valid reason to close the issue imo. I'll try to get a PR for this because this 1.10->1.8 thing is a real pita for me. Am I correct in thinking deepmind's movement to TensorFlow means the torch packages and deepmind github presence will not develop? |
I found the following solution https://www.bountysource.com/issues/34861873-unsupported-hdf5-version. I have not tried yet. |
That page does not yield a solution to the actual compatibility with a more recent version of the hdf5 library. That page just tells you to install an old version. |
such a pity. Debian has transited to HDF5-1.10. |
This config.lua solved the issue in my system: hdf5._config = { |
Is there still no solution for this issue? |
Do you have anaconda installed?
… On Apr 6, 2017, at 4:35 PM, Kevin ***@***.***> wrote:
Is there still no solution for this issue?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#76 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/ASUu5JZZWCdeexv8QqnYvpdv3pQeV2Kwks5rtXaogaJpZM4Jeg2E>.
|
Actually was able to get it working thanks, but with an older version of hdf5. Credit goes to Tom Schofield,
|
I solved the issue by installing a certain version of hdf5, but not the 1.10 version of hdf5.
hdf5._config = {
HDF5_INCLUDE_PATH = "/home/cadene/anaconda3/envs/hdf5/include/",
HDF5_LIBRARIES = "/home/cadene/anaconda3/envs/hdf5/lib/libhdf5.so;/usr/lib/x86_64-linux-gnu/librt.so;/usr/lib/x86_64-linux-gnu/libpthread.so;/usr/lib/x86_64-linux-gnu/libz.so;/usr/lib/x86_64-linux-gnu/libdl.so;/usr/lib/x86_64-linux-gnu/libm.so"
}
|
There is a fork that supports 1.10: https://github.com/anibali/torch-hdf5/tree/hdf5-1.10
|
Usually, installing the hdf5 bindings via luarocks is the more direct way and should work:
|
I found another way to solve this, which works for me: |
It seems
torch-hdf5
doesn't support 1.10.0 now.The text was updated successfully, but these errors were encountered: