我正在尝试在我的计算机上安装 dlib-18.16 for python(运行 Mac OSX 10.10)。我已经安装了boost python以及X11,但是在下载文件后按照指示运行./compile_dlib_python_module.bat时遇到了麻烦。
我得到的错误很多,但看起来像这样
[ 1%] Building CXX object dlib_build/CMakeFiles/dlib.dir/gui_widgets/fonts.o
In file included from /Users/xxx/Downloads/dlib-18.16/dlib/gui_widgets/fonts.cpp:14:
/Users/xxx/Downloads/dlib-18.16/dlib/gui_widgets/nativefont.h:313:21: error: use
of undeclared identifier 'XAllocColor'
XAllocColor(d, cmap, &xcol);
这会持续一段时间并以
/Users/xxx/Downloads/dlib-18.16/dlib/gui_widgets/nativefont.h:400:21: error: use
of undeclared identifier 'XFillRectangle'
XFillRectangle(d, pix, gc, 0, 0, width, height);
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make[2]: *** [dlib_build/CMakeFiles/dlib.dir/gui_widgets/fonts.o] Error 1
make[1]: *** [dlib_build/CMakeFiles/dlib.dir/all] Error 2
make: *** [all] Error 2
我检查了一些缺失的函数,如 XFillRectangle,发现它们在 python 的 anaconda 安装中的一些 .h 文件中声明(查看 dlib_build 文件时,安装程序似乎找到了 anaconda 安装)。有没有人对如何解决这个问题有任何想法?