Uninstall boost and install another version

后端 未结 5 1235
我寻月下人不归
我寻月下人不归 2020-12-31 09:51

I\'ve installed the boost libraries on Linux Mint 12 using the command sudo apt-get install libboost-dev libboost-doc, which installs the default version availa

5条回答
  •  难免孤独
    2020-12-31 10:17

    Downgrade your boost version. I'm not familiar with Mint, but assuming it is deb-based, you can do:

    apt-cache show libboost-dev
    

    to see all installable version and install a specific version with

    sudo apt-get install libboost-dev=1.42.0.1
    

    There are also convenience packages for the major boost versions:

    sudo apt-get install libboost1.44-dev
    

提交回复
热议问题