Ubuntu下安装boost

Posted 哈鲁曼

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu下安装boost相关的知识,希望对你有一定的参考价值。

今天开始安装配置Ubuntu开发环境(Ubuntu 12.04)。在干活之前就预计到会遇到很多问题,但是没想到一开始就卡壳,可能是linux中各种包的依赖关系太复杂了,决定写个帖子记录一下,免得以后再踩雷。

 

./boost/python/detail/wrap_python.hpp:75:24: fatal error: patchlevel.h: No such file or directory
compilation terminated.

解决办法
sudo apt-get install python-dev


gcc.compile.c++ bin.v2/libs/iostreams/build/gcc-4.6/release/threading-multi/bzip2.o
libs/iostreams/src/bzip2.cpp:20:56: fatal error: bzlib.h: No such file or directory
compilation terminated.

解决办法
sudo apt-get install libbz2-dev

 

sudo ./b2重新再编译,等待几分钟之后,终于见到了成功的信息

 

The Boost C++ Libraries were successfully built!

The following directory should be added to compiler include paths:

/usr/local/boost_1_59_0

The following directory should be added to linker library paths:

/usr/local/boost_1_59_0/stage/lib

以上是关于Ubuntu下安装boost的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu下安装boost

Ubuntu14.04下安装 boost (boost_1.54 最简单的方法)

ubuntu 16.04 下更换boost版本

如何在不知道安装路径的情况下卸载boost

ubuntu qt使用不同版本boost,兼容系统下的boost

Ubuntu操作系统下使用CLion运行Boost库的一系列配置