【问题标题】:How to get Python import working with dlib (using cmake and osx)如何让 Python 导入与 dlib 一起使用(使用 cmake 和 osx)
【发布时间】:2023-04-05 09:43:01
【问题描述】:

对不起,如果这是基本的,但我正在尝试安装 dlib 以与 python 一起使用,如 (http://blog.dlib.net/2014/04/dlib-187-released-make-your-own-object.html)“在 Python 中制作自己的对象检测器!”中所述。

我下载了安装文件,解压缩并按照安装说明使用 cmake (http://dlib.net/compile.html)

cd examples
mkdir build
cd build
cmake ..
cmake --build . --config Release

这似乎工作正常

但是在 Python 中键入“import dlib”只会给出 ImportError: No module named dlib。

知道我如何告诉 Python 如何找到/使用这个东西吗?

【问题讨论】:

    标签:
    python
    cmake
    dlib