私のコンピューター(Mac OSX 10.10を実行)にpython用のdlib-18.16をインストールしようとしています。X11と同様にboost pythonをインストールしましたが、ファイルをダウンロードした後、指示に従って./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 インストールを見つけたようです)。これを修正する方法について誰かアイデアがありますか?