您的位置:首页 > 编程语言 > Python开发

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

2014-09-23 14:49 1406 查看
就是遇到类似标题上面的错误。

原因是没有安装对应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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐