报错:fatal error: bzlib.h: No such file or directory
背景:编译安装 Boost 时报错。
参考:https://www.cnblogs.com/qq952693358/p/8563048.html
Boost依赖bzlib.h尚未安装,需要安装 bzip 。
Ubuntu 系统:
sudo apt-get install libbz2-dev
CentOS 系统:
yum install bzip2-devel
参考:https://www.linuxquestions.org/questions/linux-newbie-8/cannot-enable-pcregrep-libbz2-because-bzlib-h-was-not-found-4175442278/
参考:https://www.linuxquestions.org/questions/linux-newbie-8/install-libbz2-4175444507/
参考:http://www.aichengxu.com/other/5934079.htm