码迷,mamicode.com
首页 > 其他好文 > 详细

caffe环境搭建笔记

时间:2016-09-18 14:54:14      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:

首先安装以下库或软件

sudo apt-get install git
sudo apt-get install
      libprotobuf-dev
      libleveldb-dev
      libsnappy-dev
      libopencv-dev
      libhdf5-serial-dev
      protobuf-compiler
sudo apt-get install --no-install-recommends libboost-all-dev
sudo apt-get install libatlas-base-dev
sudo apt-get install python-dev
sudo apt-get install
      libgflags-dev
      libgoogle-glog-dev
      liblmdb-dev

其次,下载caffe

git clone https://github.com/bvlc/caffe.git
cd caffe/
mv Makefile.config.example Makefile.config

配置文件

在Makefile.config文件的第85行,添加/usr/include/hdf5/serial/ 到 INCLUDE_DIRS,也就是把下面第一行代码改为第二行代码。

INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include
改成
INCLUDE_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 hdf5
改成
LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial

 

接着执行

make all

make test

make runtest

 

caffe环境搭建笔记

标签:

原文地址:http://www.cnblogs.com/wuchaodzxx/p/5881383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!