Ubuntu 16.04下Anaconda编译安装Caffe


开篇先把我目前电脑上的环境说一下:

  1. 硬件
  • 戴尔工作站
  • 华硕1080ti 11G显存
  1. 软件
  • 已安装好Anoconda 2
  • 已安装好cuda
  • 已安装好cudnn
  • 已安装好TensorFlow、Pytorch,每个都单独有一个虚拟的Anoconda环境

那么现在想要把caffe安装到一个新的Anoconda虚拟环境中去,每次训练不同平台下的网络时,只需要激活指定的虚拟环境。由于这里的caffe源码别人做了部分修改,运行他的代码,必须编译他修改后的caffe源码。

安装依赖库

进入官网http://caffe.berkeleyvision.org/installation.html,可以看到编译caffe需要的依赖库:


首先进入自己的caffe虚拟环境source activate gcf_caffe,
由于CUDA已经安装好了,直接跳过,安装各种依赖库:
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 libgflags-dev libgoogle-glog-dev liblmdb-dev
sudo apt-get install libatlas-dev
sudo apt-get install liblapack-dev
sudo apt-get install libatlas-base-dev
参考地址https://blog.csdn.net/u011974639/article/details/78804299

假若安装时提示:无法定位软件包,代表需要更新软件源sudo apt-get update,更新软件源时若提示仓库“http://ppa.launchpad.net/fcitx-team/nightly/ubuntu xenial Release”没有Release文件。怎么解决呢?先切换到对应的ppa目录:cd /etc/apt/sources.list.d,再执行mv fcitx-team-ubuntu-nightly-xenial.list fcitx-team-ubuntu-nightly-xenial.list.bak,参考地址https://www.cnblogs.com/wenzheshen/p/6599636.html

配置caffe的Makefile.config文件

很多编译问题基本都是这里没有设置好,比如opencv冲突,protobuf冲突,这个文件需要仔细设置,实际内容也并没有多少。
这里把我电脑上用到的具体配置贴出来:

## Refer to http://caffe.berkeleyvision.org/installation.html
# Contributions simplifying and improving our build system are welcome!

# cuDNN acceleration switch (uncomment to build with cuDNN).
USE_CUDNN := 1

# CPU-only switch (uncomment to build without GPU support).
# CPU_ONLY := 1

# uncomment to disable IO dependencies and corresponding data layers
# USE_OPENCV := 0
# USE_LEVELDB := 0
# USE_LMDB := 0

# uncomment to allow MDB_NOLOCK when reading LMDB files (only if necessary)
#   You should not set this flag if you will be reading LMDBs with any
#   possibility of simultaneous read and write
# ALLOW_LMDB_NOLOCK := 1

# Uncomment if you're using OpenCV 3
# OPENCV_VERSION := 3

# To customize your choice of compiler, uncomment and set the following.
# N.B. the default for Linux is g++ and the default for OSX is clang++
# CUSTOM_CXX := g++

# CUDA directory contains bin/ and lib/ directories that we need.
CUDA_DIR := /usr/local/cuda
# On Ubuntu 14.04, if cuda tools are installed via
# "sudo apt-get install nvidia-cuda-toolkit" then use this instead:
# CUDA_DIR := /usr

# CUDA architecture setting: going with all of them.
# For CUDA < 6.0, comment the *_50 through *_61 lines for compatibility.
# For CUDA < 8.0, comment the *_60 and *_61 lines for compatibility.
CUDA_ARCH := -gencode arch=compute_30,code=sm_30 \
        -gencode arch=compute_35,code=sm_35 \
        -gencode arch=compute_50,code=sm_50 \
        -gencode arch=compute_52,code=sm_52 \
        -gencode arch=compute_60,code=sm_60 \
        -gencode arch=compute_61,code=sm_61 \
        -gencode arch=compute_61,code=compute_61

# BLAS choice:
# atlas for ATLAS (default)
# mkl for MKL
# open for OpenBlas
BLAS := atlas
# Custom (MKL/ATLAS/OpenBLAS) include and lib directories.
# Leave commented to accept the defaults for your choice of BLAS
# (which should work)!
# BLAS_INCLUDE := /opt/OpenBLAS/include
# BLAS_LIB := /opt/OpenBLAS/lib

# Homebrew puts openblas in a directory that is not on the standard search path
# BLAS_INCLUDE := $(shell brew --prefix openblas)/include
# BLAS_LIB := $(shell brew --prefix openblas)/lib

# This is required only if you will compile the matlab interface.
# MATLAB directory should contain the mex binary in /bin.
# MATLAB_DIR := /usr/local
# MATLAB_DIR := /Applications/MATLAB_R2012b.app

# NOTE: this is required only if you will compile the python interface.
# We need to be able to find Python.h and numpy/arrayobject.h.
# PYTHON_INCLUDE := /usr/include/python2.7 \
        # /usr/lib/python2.7/dist-packages/numpy/core/include
# Anaconda Python distribution is quite popular. Include path:
# Verify anaconda location, sometimes it's in root.
ANACONDA_HOME := $(HOME)/anaconda2/envs/gcf_caffe
PYTHON_INCLUDE := $(ANACONDA_HOME)/include \
        $(ANACONDA_HOME)/include/python2.7 \
        $(ANACONDA_HOME)/lib/python2.7/site-packages/numpy/core/include

# Uncomment to use Python 3 (default is Python 2)
# PYTHON_LIBRARIES := boost_python3 python3.5m
# PYTHON_INCLUDE := /usr/include/python3.5m \
#                 /usr/lib/python3.5/dist-packages/numpy/core/include

# We need to be able to find libpythonX.X.so or .dylib.
# PYTHON_LIB := /usr/lib
PYTHON_LIB := $(ANACONDA_HOME)/lib
LINKFLAGS := -Wl,-rpath,$(ANACONDA_HOME)/lib

# Homebrew installs numpy in a non standard path (keg only)
# PYTHON_INCLUDE += $(dir $(shell python -c 'import numpy.core; print(numpy.core.__file__)'))/include
# PYTHON_LIB += $(shell brew --prefix numpy)/lib

# Uncomment to support layers written in Python (will link against Python libs)
WITH_PYTHON_LAYER := 1

# Whatever else you find you need goes here.
INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial
LIBRARY_DIRS := $(PYTHON_LIB) /usr/local/lib /usr/lib /usr/lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/hdf5/serial

# If Homebrew is installed at a non standard location (for example your home directory) and you use it for general dependencies
# INCLUDE_DIRS += $(shell brew --prefix)/include
# LIBRARY_DIRS += $(shell brew --prefix)/lib

# NCCL acceleration switch (uncomment to build with NCCL)
# https://github.com/NVIDIA/nccl (last tested version: v1.2.3-1+cuda8.0)
# USE_NCCL := 1

# Uncomment to use `pkg-config` to specify OpenCV library paths.
# (Usually not necessary -- OpenCV libraries are normally installed in one of the above $LIBRARY_DIRS.)
# USE_PKG_CONFIG := 1

# N.B. both build and distribute dirs are cleared on `make clean`
BUILD_DIR := build
DISTRIBUTE_DIR := distribute

# Uncomment for debugging. Does not work on OSX due to https://github.com/BVLC/caffe/issues/171
# DEBUG := 1

# The ID of the GPU that 'make runtest' will use to run unit tests.
TEST_GPUID := 0

# enable pretty build (comment to see full commands)
Q ?= @

注意点有三点:

  1. 我的依赖库都是在caffe虚拟环境gcf_caffe中安装的,这里ANACONDA_HOME := $(HOME)/anaconda2/envs/gcf_caffe
  2. 设置好hdf5的路径,INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial
    LIBRARY_DIRS := $(PYTHON_LIB) /usr/local/lib /usr/lib /usr/lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu/hdf5/serial
  3. caffe下的Makefile修改地方:
    将:LIBRARIES += glog gflags protobuf boost_system boost_filesystem m
    改为:LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial

protoc冲突

这里说一下非常容易遇到的protoc冲突,因为我已经安装了TensorFlow环境,/anaconda/bin/下存在一个3.5的protoc,系统/usr/bin/下也存在一个2.6的protoc,编译caffe时默认使用的是/anaconda/bin下的protoc,提示:error This file was generated by an older version of protoc which is,表示当前使用的protoc版本过高。

  • 安装protobuf的方法有好几种:
    sudo apt-get install libprotobuf-dev protobuf-compiler #Linux系统级的安装
    sudo pip install google protocol #python2.7版本的安装
    sudo pip3 install google protocol #python3.5版本的安装
    conda install protobuf #anaconda版本的安装
  • 查看系统中已安装的protobuf:
    whereis protoc #查看那些路径下安装了protobuf
    which protoc #查看默认选用的protobuf
    protoc --version #查看当前默认的protobuf的版本
    sudo protoc --version #查看系统的protobuf的版本
    参考地址https://blog.csdn.net/m0_38082419/article/details/80117132
    当前protoc情况:

    因为protoc版本过高,那么我只需要使用一个低版本的protoc就行了,修改caffe中的Makefile文件,把如下代码:
$(Q)protoc --proto_path=$(PROTO_SRC_DIR) --cpp_out=$(PROTO_BUILD_DIR) $<
$(Q)protoc --proto_path=$(PROTO_SRC_DIR) --python_out=$(PY_PROTO_BUILD_DIR) $<

修改成

$(Q)/usr/bin/protoc --proto_path=$(PROTO_SRC_DIR) --cpp_out=$(PROTO_BUILD_DIR) $<
$(Q)/usr/bin/protoc --proto_path=$(PROTO_SRC_DIR) --python_out=$(PY_PROTO_BUILD_DIR) $<

还有个问题,如何查看caffe需要的protoc版本呢?
打开编译出错的文件caffe.pb.h,里面会有相关错误提示
编译失败了,重新编译时,记得sudo make clean

编译

  • sudo make all -j8
  • sudo make test -j4
  • make runtest -j4
  • sudo make pycaffe
  • import caffe
    若果提示ImportError: No module named caffe,需要把caffe下的Python路径导入环境变量中去。sudo vim ~/.bashrc,最后一行加上export PYTHONPATH="/home/ilab-gcf/桌面/CASENet_Codes/caffe/python:$PYTHONPATH",这里的路径写上你自己的路径,记得source ~/.bashrc。否则的话只能在这个目录下执行Python,导入caffe了。

报错提示can not find module skimage.io,安装scikit-imageconda install scikit-image
报错提示No module named google.protobuf.internal,安装protobufpip install protobuf

Pycharm中使用Caffe

由于pycharm并不能读取.bashrc中的内容,因而在命令行中能import caffe,在pycharm中依旧不能使用import caffe。解决办法是从bash shell中启动pycharm,使pycharm能读取.bashrc中的环境变量。
启动命令:sh ./pycharm.sh,前提进入pycharm安装路径的bin文件夹中。
参考地址https://www.cnblogs.com/darkknightzh/p/5896446.html

总结

这里都是废话,可以不用看。这个caffe编译浪费了我很多时间,遇到错误了就不想弄了,三天打鱼两天筛网,遇到问题还是喜欢逃避,很不好,路要一步步走。给自己建议:

  1. 每天制定小目标,一步步脚踏实地。
  2. 多尝试换位思考。
  3. 加强承受能力。
  4. 不清高。

以下内容2019年5月24日新增:
背景介绍:需要在新的机器上搭建caffe环境,显卡为2080ti,cuda 10.0,cudnn 7.3.1,问题尝试了很多方法,花了大半天时间,心态很重要。

  1. libopencv_core.so需要libcudart.so.9.0,而libcaffe.so需要libcudart.so.10.0??
    在大佬帮助下,虚拟环境下弄了两个libcudart<实际就是从另外环境拷贝过来一个~>
  2. 报这样的错:
CXX/LD -o .build_release/examples/cifar10/convert_cifar_data.bin
CXX/LD -o .build_release/examples/cpp_classification/classification.bin
.build_release/tools/convert_imageset.o:在函数‘std::string* google::MakeCheckOpString<unsigned long, int>(unsigned long const&, int const&, char const*)’中:
convert_imageset.cpp:(.text._ZN6google17MakeCheckOpStringImiEEPSsRKT_RKT0_PKc[_ZN6google17MakeCheckOpStringImiEEPSsRKT_RKT0_PKc]+0x50):对‘google::base::CheckOpMessageBuilder::NewString()’未定义的引用
.build_release/tools/convert_imageset.o:在函数‘main’中:
convert_imageset.cpp:(.text.startup+0x347):对‘google::SetUsageMessage(std::string const&)’未定义的引用
convert_imageset.cpp:(.text.startup+0xd2a):对‘google::protobuf::MessageLite::SerializeToString(std::string*) const’未定义的引用
.build_release/lib/libcaffe.so:对‘google::protobuf::Message::InitializationErrorString() const’未定义的引用
.build_release/lib/libcaffe.so:对‘google::protobuf::internal::WireFormatLite::WriteStringMaybeAliased(int, std::string const&, google::protobuf::io::CodedOutputStream*)’未定义的引用
....

查看当前版本<gcc --version>版本为4.8,把它升级成5.4,感谢此博主的文章https://blog.csdn.net/chenshuibiao/article/details/78734957
关于如何升级更换GCC?
感谢此博主文章https://www.cnblogs.com/loadofleaf/p/5667989.html

  • 添加源
    sudo add-apt-repository ppa:ubuntu-toolchain-r/test
    sudo apt-get update
  • 安装依赖的包(出现错误才需要这个)
    sudo apt-get install software-properties-common
  • 升级安装
    sudo apt-get install gcc-5 g++-5
  • 更新链接
    sudo ln -s /usr/bin/gcc-5 /usr/bin/gcc -f
    sudo ln -s /usr/bin/g++-5 /usr/bin/g++ -f

注意!注意!注意!:
caffe 编译使用5.0以上gcc,3.0以下的protobuf(建议2.6.1)

  1. 报错ImportError: dynamic module does not define module export function (PyInit__caffe)
    不要使用3.5以上python、建议2.7
  2. 报错.build_release/lib/libcaffe.so: undefined reference to cv::imread(cv::String const&, int)’
    发现此电脑的opencv为3.0,所以:
    Makefile.config中OPENCV_VERSION := 3取消注释
  3. 无形错误最为致命!!!
    有时候环境装成功后,再次编译会失败,大概是anoconda的虚拟环境下有相关库冲突了,一般我都是删除anoconda 虚拟环境,重新创建再编译
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容