How to install boost on gnu/linux How to install boost on gnu/linux linux linux

How to install boost on gnu/linux


Here's the quick way I did it:

$ sudo ./bootstrap.sh --prefix=/usr/local$ sudo ./b2 install 

The library and header files will be installed in /usr/local. Header files will be put in /usr/local/include and the libs will be put in /usr/local/lib/. Change the /usr/local path if you need it installed in another place.