#------------------ZR--------------------
#
#--------!未经同意,不得转载!-------
1、安装caffe
参照https://blog.csdn.net/yhaolpz/article/details/71375762
(pycaffe notebook接口不用配)
2、下载py-faster-rcnn
# Make sure to clone with --recursive
$ git clone --recursive https://github.com/rbgirshick/py-faster-rcnn.git
(–recursive :是为了递归下载caffe-master)
3、继续安装python依赖库
py-faster-rcnn/caffe-fast-rcnn/python/requirement.txt文件列出了pycaffe的所有依赖库,要把requirements下的依赖都装一遍。
执行bash命令:
$ for req in $(cat requirements.txt); do pip install $req; done
4、编译前注意cudnn版本是否符合
做以下修改参照:https://blog.csdn.net/u010733679/article/details/52221404
5、编译Cython模块
$ cd py-faster-rcnn/l