编译boost python模块遇到的错误:../../libraries/boost_1_44_0/boost/python/detail/wrap_python.hpp:75:24: fatal error: patchlevel.h: No such file or directory

就是遇到类似标题上面的错误。

原因是没有安装对应python的python-dev依赖,不然编译到boost python模块的时候就会出错。

所以解决方案是sudo apt-get install python-dev就行了

然后用boost自带的b2工具编译boost python模块的时候就不会出错了

注意好好看以下文档,官方文档很重要。

references:

http://stackoverflow.com/questions/6782071/boostbuild-patchlevel-h-does-not-exist

http://stackoverflow.com/questions/15136671/unable-to-build-boost-python

http://stackoverflow.com/questions/1771063/no-such-file-or-directory-error-with-boost-python

http://www.boost.org/doc/libs/1_56_0/libs/python/doc/building.html

http://www.boost.org/doc/libs/1_56_0/more/getting_started/unix-variants.html

原文地址:https://www.cnblogs.com/foohack/p/3988402.html