ubuntu下安裝boost環境

2021-07-24 02:46:18 字數 1012 閱讀 6706

boost版本為: boost_1_52_0

ubuntu版本為:ubuntu-12.04.1-desktop-i386

這裡有兩種安裝方法:

**********===

第一種:

也是最簡單的:進入linux系統後,輸入

# apt-cache search boost

你將看到很多檔案資訊,你會看到其中乙個檔案叫 libboost-dev, 直接安裝此檔案即可:

# apt-get install libboost-dev

這樣就安裝成功了。這個速度很快,是因為直接拷貝了lib檔案到系統。

可以使用本文最後**測試安裝成功與否。

**********====

第二種:

這個速度比較慢,因為需要自己編譯出lib庫。

我下的是gz結尾的。放到linux的檔案系統裡,這裡假設為/usr/local/boost_1_52_0.tar.gz

第一步:解壓壓縮包,命令如下,(#號僅為起始標記作用,敲命令時忽略):

# cd /usr/local/

# tar -zxvf boost_1_52_0.tar.gz

第二步:解壓後得到資料夾boost_1_52_0,執行如下命令:

# cd boost_1_52_0/

# ./bootstrap.sh  //這個命令類似於配好環境

第三步:執行二步命令後得到乙個檔案,名字是bjam,執行這個檔案:

# ./bjam    //這裡需要十幾分鐘,完成後就代表安裝成功了。

第四步:檢驗安裝成功否:在linux下任意目錄下建立test.cpp

#include

#include

int main()

這是乙個字串轉化為整數的簡單程式

執行命令:

#  g++ test.cpp -o test

#  ./test

將得到輸出結果為:123456

代表boost安裝成功,就可以盡情使用boost的美妙了!!!

Ubuntu下安裝boost庫

安裝環境 ubuntu 14.04 步驟 直接使用 apt get進行安裝 sudo apt get install libboost dev測試 include include boost lexical cast.hpp int main 這裡boost環境已經搭建好。另外,由於我直接使用apt...

ubuntu下安裝boost環境

這裡有兩種安裝方法 第一種 也是最簡單的 進入linux系統後,輸入 apt cache search boost 1.5 你將看到很多檔案資訊,你會看到其中乙個檔案叫 libboost dev,直接安裝此檔案即可 apt get install libboost 1.5 dev 這樣就安裝成功了。...

轉 Ubuntu下安裝boost庫

本文 感謝原作者分享。正文 直接使用 apt get進行安裝 sudo apt get install libboost dev 測試 include include boost lexical cast.hpp int main string s 100 int a boost lexical c...