【发布时间】:2016-11-21 09:16:26
【问题描述】:
不知何故,当使用 boost 安装 python3.5 时,cmake 找不到它。 我正在尝试安装 lib,但当我安装时出现此错误。我已经安装了 boost - python。
CMake Warning at
/usr/local/Cellar/cmake/3.6.0_1/share/cmake/Modules/FindBoost.cmake:1459 (message):
No header defined for python-py34; skipping header check
Call Stack (most recent call first):
/Users/pascaljardin/Desktop/dlib-19.0/dlib/add_python_module:60 (FIND_PACKAGE)
CMakeLists.txt:6 (include)
-- Could NOT find Boost
-- Could NOT find Boost
-- Found PythonLibs: /usr/local/Cellar/python3/3.5.2/Frameworks/Python.framework/Versions/3.5/lib/libpython3.5.dylib (found suitable version "3.5.2", minimum required is "3.4")
-- *****************************************************************************************************
-- To compile Boost.Python yourself download boost from boost.org and then go into the boost root folder
-- and run these commands:
-- ./bootstrap.sh --with-libraries=python
-- ./b2
-- sudo ./b2 install
-- *****************************************************************************************************
CMake Error at /Users/pascaljardin/Desktop/dlib-19.0/dlib/add_python_module:108 (message):
Boost python library not found.
Call Stack (most recent call first):
CMakeLists.txt:6 (include)
-- Configuring incomplete, errors occurred!
See also "/Users/pascaljardin/Desktop/dlib-19.0/tools/python/build/CMakeFiles/CMakeOutput.log".
error: cmake configuration failed!
从头开始。这就是我在 macbook air os x el Captain 版本 10.11.5 上安装所有内容的方式
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
$ brew update
$ brew install python3
$ brew install boost --with-python3
$ brew install cmake
那么,当我安装所有东西时,是否有什么地方做得不对?我真的不知道为什么会这样,我真的很想使用
安装 dlibpython3 setup.py install
在 lib 文件夹中。
或者有没有更简单的方法用 python3 安装 dlib?
【问题讨论】:
-
你的系统中的 boost python 库名称是什么?
-
我使用的是 boost 1.60,它与 blender 2.77 兼容
标签: cmake python-3.5 boost-python dlib