之前写了基本的类型转换,忘了介绍boost库的安装使用了
1.从官网下载boost库源码
官网地址:https://www.boost.org/
2.解压之后找到 bootstrap.bat 文件 双击运行之后会生成b2.exe 文件
3.在同级目录下新建bat文件,写入内容如下
b2 install --toolset=msvc-14.0 --with-python --prefix="E:boost" link=static runtime-link=shared threading=multi address-model=64
–prefix=“E:boost” 该句是库编译输出目录
执行该句之后会得到lib和include文件
正常创建项目,将python环境和boost环境加到项目中即可
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)