Skip to content

Instantly share code, notes, and snippets.

@v0112358
Created August 31, 2018 12:48
Show Gist options
  • Save v0112358/6b894c7f869a2d5605836a3b88e3c959 to your computer and use it in GitHub Desktop.
Save v0112358/6b894c7f869a2d5605836a3b88e3c959 to your computer and use it in GitHub Desktop.
Install boost 1.68 on CentOS 7.x
wget https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.tar.gz
tar xzvf boost_1_68_0.tar.gz
cd boost_1_68_0
./bootstrap.sh --prefix=/usr/local/
export CPLUS_INCLUDE_PATH="$CPLUS_INCLUDE_PATH:/usr/include/python3.6m"
./b2 -j$(nproc) -d0 install --with=all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment