卸载boost并安装另一个版本

时间:2011-12-08 11:30:55

标签: c++ linux boost install

我使用命令sudo apt-get install libboost-dev libboost-doc在Linux Mint 12上安装了boost库,该命令安装了存储库中可用的默认版本。但是,我要做的项目需要1.44版本的boost。如何卸载默认(当前)版本1.46并安装1.44?

我无法找到boost website上的文档来安装.tar.gz包中的提升。

6 个答案:

答案 0 :(得分:3)

您可以使用

卸载
apt-get --purge remove libboost-dev libboost-doc

从boost网站下载您需要的软件包,提取并按照index.html中提取的目录中的“入门”说明进行操作。

答案 1 :(得分:3)

Boost可以通过两种方式安装

  • Deb包
  • 获取并手动安装

在某些情况下,我们可能同时安装了这两种类型,这可能会导致版本错误。让我们看看如何卸载两者。

sudo apt-get update

# to uninstall deb version
sudo apt-get -y --purge remove libboost-all-dev libboost-doc libboost-dev
# to uninstall the version which we installed from source
sudo rm -f /usr/lib/libboost_*

然后,如果不满足它们,我们需要安装其他依赖项

sudo apt-get -y install build-essential g++ python-dev autotools-dev libicu-dev libbz2-dev

让我们从link下载我们需要的增强版本。我正在下载1.54版本。然后解压缩并安装它。

# go to home folder
cd
wget http://downloads.sourceforge.net/project/boost/boost/1.54.0/boost_1_54_0.tar.gz
tar -zxvf boost_1_54_0.tar.gz
cd boost_1_54_0
# get the no of cpucores to make faster
cpuCores=`cat /proc/cpuinfo | grep "cpu cores" | uniq | awk '{print $NF}'`
echo "Available CPU cores: "$cpuCores
sudo ./b2 --with=all -j $cpuCores install

现在让我们检查安装的版本

cat /usr/local/include/boost/version.hpp | grep "BOOST_LIB_VERSION"

您将看到以下内容

//  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
#define BOOST_LIB_VERSION "1_54"

已安装增强版1.54

就是这样,它对我有用。如果您遇到任何问题,请告诉我。

答案 2 :(得分:2)

降级你的升级版本。我不熟悉Mint,但假设它是基于deb的,你可以这样做:

apt-cache show libboost-dev

查看所有可安装版本并使用

安装特定版本
sudo apt-get install libboost-dev=1.42.0.1

主要的升级版本还有便利包:

sudo apt-get install libboost1.44-dev

答案 3 :(得分:2)

已测试 Ubuntu 20.04 使用我的脚本在 ubuntu 20.04 中卸载旧版本的 boost 并按照上面的 rams 说明进行操作

#!/bin/bash
sudo apt-get -y --purge remove libboost-all-dev libboost-doc libboost-dev
echo "clear boost dir"
sudo rm -r /usr/local/lib/libboost*
sudo rm -r /usr/local/include/boost
sudo rm -f /usr/lib/libboost_*
sudo rm -r /usr/include/boost

答案 4 :(得分:1)

正如@savamane所写,你可以用

卸载它

apt-get --purge remove libboost-dev libboost-doc

根据建议here安装.deb个软件包的另一个建议。 (下载适用于您的架构的那个)。

对于仍然受支持的发行版,您只需在http://packages.ubuntu.com/的发行版中搜索包即可。例如libboost-system1.46.1可以在precise - >下找到Libraries libboost-all-dev_1.40.0.1_amd64.deb标签。

对于不受支持的发行版,仍有机会找到它们 http://archive.ubuntu.com/。例如,可以找到select * from svv_vacuum_progress http://archive.ubuntu.com/ubuntu/pool/universe/b/boost-defaults/

答案 5 :(得分:1)

这是安装特定Boost版本的方法:

cd boost_1_54_0/

./bootstrap.sh --with-libraries=atomic,date_time,exception,filesystem,iostreams,locale,program_options,regex,signals,system,test,thread,timer,log

sudo ./b2 install