1. 程式人生 > >ubuntu下的caffe安裝

ubuntu下的caffe安裝

參考文件http://www.linuxidc.com/Linux/2016-09/135034.htm主要參考

http://blog.csdn.net/muzilinxi90/article/details/53673184

遇到的問題:  1、先要更新:sudo apt-get update,sudo apt-get upgrade

2、

第二部分: 安裝CAFFE 到CAFFE資料夾, 使用模板寫個Makefile.config. 具體就是先複製一下模板, 再改一些內容(我喜歡用EMACS). cp Makefile.config.example Makefile.config -因為CPU MODE, 所以在CPU_ONLY := 1前面的#要去掉. -兩個路徑要改成這樣:(新增後面的兩個hdf5的路徑, 否則編譯時報hdf5錯誤) # 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/hdf5/serial 這個部分路徑要改成 INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/include/hdf5/serial LIBRARY_DIRS := $(PYTHON_LIB) /usr/lib/x86_64-linux-gnu/hdf5/serial 這個# 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/local/lib/python2.7/dist-packages/numpy/core/include 也要改。