9 lines
239 B
Markdown
9 lines
239 B
Markdown
|
# 缺少boost库
|
||
|
``` shell
|
||
|
sudo apt install sudo apt-get install libboost-all-dev
|
||
|
```
|
||
|
# 找不到pybind11
|
||
|
在 python_wrapper/CMakeLists.txt第14行添加
|
||
|
```
|
||
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/third-party/pybind11/include)
|
||
|
```
|