Faster R-cnn 或Caffe hdf5库目录找不到解决办法

来源:互联网 发布:隔热断桥铝合金 知乎 编辑:程序博客网 时间:2024/06/05 21:10

使用JETSON TX1安装Caffe和Faster R-cnn,编译make all的时候遇到了hdf5库找不到的错误,错误如下:

./include/caffe/util/hdf5.hpp:6:18: fatal error: hdf5.h: No such file or directorycompilation terminated.

解决办法摘自http://blog.csdn.net/hongye000000/article/details/51043913,原出处为https://gist.github.com/wangruohui/679b05fcd1466bb0937f,贴在下面。

解决方法在Makefile.config文件的第85行,添加 /usr/include/hdf5/serial/ 到 INCLUDE_DIRS,也就是把下面第一行代码改为第二行代码。INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/includeINCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial/在Makefile文件的第173行,把 hdf5_hl 和hdf5修改为hdf5_serial_hl 和 hdf5_serial,也就是把下面第一行代码改为第二行代码。LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_hl hdf5LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial




0 0
原创粉丝点击