BlueXIII's Blog

热爱技术,持续学习

0%

face_recognition安装

GitHub

https://github.com/ageitgey/face_recognition/blob/master/README_Simplified_Chinese.md

dlib安装

https://gist.github.com/ageitgey/629d75c1baac34dfa5ca2a1928a7aeaf

1
2
3
4
5
6
7
git clone https://github.com/davisking/dlib.git

cd dlib
mkdir build; cd build; cmake ..; cmake --build .

cd ..
python3 setup.py install

face_recognition安装

1
pip3 install face_recognition
1
2
export CC=/usr/local/bin/gcc
export CXX=/usr/local/bin/g++