What is the easiest way to verify boost has been installed? I did try to manually find the files but being a Linux newbie I wasn’t able to.
I wasn’t sure if there was a one-line command check?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can try to compile a simple program:
You can also look for the boost header files in
/usr/include/boost/, and perhaps also in/usr/local/include/in case someone has installed a local (non-distribution) version.Parallelly, you can/need to check
/usr/lib(or/usr/local/lib) for the compiled libraries that go with Boost such aslibboost_system.so.If you know
cmake, you can check out itsFindBoostmodule to see what sort of checks they do to discover the location of a potential boost installation.