环境:

WIN10

VS2015


1、下载

登陆boost的官网: http://www.boost.org/


windows下 boost库的安装_C++这里显示当前版本为1.60.0,直接下载 boost_1_60_0.zip

下载完成后解压(这里我解压到了E:\boost)

windows下 boost库的安装_C++_02



2、编译

打开“VS2015开发人员命令提示”

windows下 boost库的安装_C++_03

注意,如果打开出现

cannot determine the location of the vs common tools folder

解决方法:在path环境变量中,添加 C:\Windows\System32即可

如下图

windows下 boost库的安装_C++_04

然后,用cd命令进入boost解压后的目录,然后执行bootstrap.bat

windows下 boost库的安装_C++_05

执行完成后

输入

bjam stage --toolset=msvc-9.0 --without-python --stagedir="这里输入boost的根目录" link=static runtime-link=shared runtime-link=static threading=multi debug release

(直接复制,然后修改双引号里面的内容即可)

很慢,耐心等