caffe 已经编译成功,但是在配置python接口时出现错误:
CXX src/caffe/layer.cpp
PROTOC (python) src/caffe/proto/caffe.proto
LD -o .build_release/lib/libcaffe.so.1.0.0
/usr/bin/ld: cannot find -lboost_python
collect2: error: ld returned 1 exit status
Makefile:582: recipe for target '.build_release/lib/libcaffe.so.1.0.0' failed
make: *** [.build_release/lib/libcaffe.so.1.0.0] Error 1
从错误来看,是你系统里没有安装 boost_python 这个库,你使用
apt install libboost-python-dev
安装之后再看看