Python人脸识别模块dlib模块安装

打算安装python的人脸识别模块研究一番的,pip的时候提示先要安装dlib模块,然后就就
pip install dlib,疯狂报错,cmake又是什么皮皮虾,完全懵逼

以下都为Mac系统安装

*****************************************************************************************************
    --  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

*****************************************************************************************************
error: cmake configuration failed!

Google了下,要装boost,于是找到boost官网,下载相关安装包,按照人家上面的提示运行./bootstrap.sh --with-libraries=python./b2 ,又报错

fatal error:'pyconfig.h' file not found
# include 

pyconfig.h各种找不到,百思不得其解,于是又Google一番,都说要配置环境变量,软链接之类的,按人家的方法来还是不太行,既然是Mac系统,应该都可以用命令解决吧,于是又上知乎查了下,发现可以用以下命令完美解决

brew install cmake
brew install boost
brew install boost-python --with-python3
pip install dlib

唉,果然成了,美滋滋。

你可能感兴趣的:(Python人脸识别模块dlib模块安装)