我的环境
ubuntu 16.04 LTS
python是2.7.12
其他应该也可以
1. 环境搭建
安装 git 、cmake 、 python-pip
# 安装 git
$ sudo apt-get install -y git
# 安装 cmake
$ sudo apt-get install -y cmake
# 安装 python-pip
$ sudo apt-get install -y python-pip
# 编译dlib前先安装 boost
$ sudo apt-get install libboost-all-dev
# 开始编译dlib
# 克隆dlib源代码
$ git clone https://github.com/davisking/dlib.git
$ cd dlib
$ mkdir build
$ cd build
$ cmake .. -DDLIB_USE_CUDA=0 -DUSE_AVX_INSTRUCTIONS=1
$ cmake --build .(注意中间有个空格)
$ cd ..
$ sudo python setup.py install --yes USE_AVX_INSTRUCTIONS --no DLIB_USE_CUDA
# 安装 face_recognition
$ sudo pip install face_recognition
# 安装face_recognition过程中会自动安装 numpy、scipy 等