Created
August 31, 2018 12:48
-
-
Save v0112358/6b894c7f869a2d5605836a3b88e3c959 to your computer and use it in GitHub Desktop.
Install boost 1.68 on CentOS 7.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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