美文网首页
【caffe编译】 fatal error: hdf5.h: 没

【caffe编译】 fatal error: hdf5.h: 没

作者: 疯人愿的疯言疯语 | 来源:发表于2018-11-02 17:45 被阅读0次

    转载:【caffe编译】 fatal error: hdf5.h: 没有那个文件或目录

    问题如下:src/caffe/layers/hdf5_output_layer.cpp:3:18: fatal error: hdf5.h: 没有那个文件或目录

    image

    修改Makefile.config文件:
    INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include
    --->
    INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial/

    Makefile中:
    LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_hl hdf5
    --->
    LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial

    清理编译:
    make clean
    重新编译,八个线程:
    make -j8

    相关文章

      网友评论

          本文标题:【caffe编译】 fatal error: hdf5.h: 没

          本文链接:https://www.haomeiwen.com/subject/ympcxqtx.html