make pycaffe遇到致命错误No such file or directory Python.h

make pycaffe时遇到致命错误,找不到Python.h文件
CXX/LD -o python/caffe/_caffe.so python/caffe/_caffe.cpppython/caffe/_caffe.cpp:1:52: fatal error: Python.hNo suchfile or directory #include  //NOLINT(build/include_alpha)compilation terminated.make: *** [python/caffe/_caffe.so] Error 1

找不到Python.h文件,其实是caffe的Makefile.config中anaconda路径不对,也就是Python路径。 
我从这个网页中找到了解决方法:make pycaffe fatal error: ‘Python.h’ file not found
在这篇博文中找到解决办法因为我没有使用anaconda,所以手动添加路径export CPLUS_INCLUDE_PATH=/usr/include/python2.7:$CPLUS_INCLUDE_PATH 然后make pycaffe就可以了。

你可能感兴趣的:(图像处理)