Ubuntu 20.04 boost library install

hogeol·2022년 4월 11일
0

Ubuntu

목록 보기
5/12

wget https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz

your directory want to install boost
in my case, Libraries

cd ~/Libraries

tar -xvf ~/Downloads/boost_1_78_0.tar.gz

x option : unzip
v option : display the procedure
f option : select file name

cd boost_1_78_0
./bootstrap.sh

if you want to Boost.Python

./booststrap.sh --with-python=python3

or

./booststrap.sh --with-python=python

sudo ./b2 install

you should **sudo** command excute b2

FINISH

0개의 댓글