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