Closed letatanu closed 7 years ago
You are missing HDF5 libraries. Either they are not installed or the linker is looking in the wrong folder. Remake with
VERBOSE=1 make
to see any special linker locations (-L
).
Look for the files yourself: locate libhdf5.so
.
Thank you. I added the path of libhdf5 to Makefile.config and it worked. The path is:
INCLUDE_DIRS := $(PYTHON_INCLUDE) /home/'user name'/anaconda3/lib/ /usr/include/hdf5/serial/
LIBRARY_DIRS := $(PYTHON_LIB) /home/'user name'/anaconda3/lib/ /usr/lib/x86_64-linux-gnu/hdf5/serial/
I got this issue when compiling Caffe. I did some researches and found nothing. Can anyone help me?
Thank you.