为 python 安装 Dlib 库时出错
Posted
技术标签:
【中文标题】为 python 安装 Dlib 库时出错【英文标题】:Error installing Dlib library for python 【发布时间】:2017-11-19 10:13:48 【问题描述】:在尝试为 Python 安装 Dlib 库时,请使用本教程 http://dlib.net/compile.html。
本教程说要这样做 -
cd examples
mkdir build
cd build
cmake ..
cmake --build . --config Release
我已经创建了一个构建,当我发出命令 cmake ..
它显示了这个错误 -
CMake Error: The source directory "C:/Python27/dlib-19.4.0/python_examples"
does not appear to contain CMakeLists.txt.
【问题讨论】:
您正在尝试编译不需要编译的python示例。只能编译 C++ 示例。直接使用 *.py 文件即可 【参考方案1】:这些例子不需要编译,只有 C++ 的需要编译。
但是,您必须编译 dlib python 接口,您可以在此页面的 C++ 部分下方找到有关此的信息:http://dlib.net/compile.html
【讨论】:
【参考方案2】:安装 dlib 的最简单方法: 只需在命令行下面执行即可。
sudo apt-get install python-dev python-pip
sudo apt-get install build-essential cmake pkg-config
sudo apt-get install libx11-dev libatlas-base-dev
sudo apt-get install libgtk-3-dev libboost-python-dev
pip install dlib
【讨论】:
以上是关于为 python 安装 Dlib 库时出错的主要内容,如果未能解决你的问题,请参考以下文章
使用 Windows 10 在 Python 3.5 上安装 dlib 时出错
在 Windows 10 上为 python 安装 Dlib 时出错
在 Windows 10 上为 python3 安装 dlib 时出错