boost库配置 - lianggx6/Tools GitHub Wiki

Windows下的配置

https://blog.csdn.net/Alex_188/article/details/84325172
https://blog.csdn.net/u013255206/article/details/82592745

Linux下的配置

https://blog.csdn.net/this_capslock/article/details/47170313

一个错误:

  • pyconfig.h: No such file or directory
    这个问题主要是两个部分,一个是没有安装python3-devel依赖,另一个是编译的时候需要导入它
    第一部分:安装python-devel,opensuse下使用zypper install python-devel,
    这样安装的是python2版本的,python3的则为python3-devel
    第二部分:编译时使用命令行导入见此篇博客:https://codeday.me/bug/20180123/123332.html