安装与编译Dlib(以Ubuntu16.04+Python3.6+pip为例)

安装与编译Dlib(以Ubuntu16.04+Python3.6+pip为例)

Step1:下载Ubuntu (or Linux)系统支持库=>Install OS libraries

sudo apt-get install build-essential cmake pkg-config libx11-dev libatlas-base-dev libgtk--dev libboost-python-dev

Step 2:安装与Python版本一致的相关库=>Install Python libraries

sudo apt-get install python3.-dev python3-pip 

(注意:这里的python3.6-dev对应的是Python3.6这个版本)

Step3:编译并安装Dlib=>Compile Dlib

0)准备工作,去官网下载源码:http://dlib.net/files/

安装与编译Dlib(以Ubuntu16.04+Python3.6+pip为例)

1) C++编译(Compile C++ binary)

wget http://dlib.net/files/dlib-19.16.tar.bz2
(如果已经下载源码,这一步不需要。)
tarxvf dlib-19.16.tar.bz2
cd dlib-19.16/
mkdir build
cd build
cmake ..
cmake --build . --config Release
sudo make install
sudo ldconfig
cd..

2) Python编译(Compile Python module)

本质来说,就是C++编译基础上添加Python调用模块。
这种方法较多,常见以下几种:

a.直接pip编译安装:

sudo pip install dlib==19.16
或者
sudo pip3 install dlib==19.16

b.进入dlib的目录用setup.py文件方式编译安装:

# move to dlib's root directory
cd dlib-19.16
sudo python setup.py install # clean up(this step is required if you want to build dlib for both Python2 and Python3)
rm -rf dist
rm -rf tool/python/build
rm python_examples/dlib.so

题外知识:apt-get的使用

1、更新软件数据库:sudo apt-get update
2、查找你想要的软件:sudo apt-cache search softwareName
3、从查找的结果中找到你想安装的软件,然后:sudo apt-get install softwareNameYouFound
备注:斜体字为命令的参数,需要根据用户需要安装的软件名称而改变。
---------------------------------------------------------
可以用命令:sudo apt-cache -h来得到更多信息。
---------------------------------------------------------
例如:我想安装eclipse,但我不知道是否能通过apt-get命令来安装,如下操作:
1、sudo apt-get update.
2、sudo apt-cache search eclipse这时,可以看到有
3、这时可以用以下命令安装eclipse:sudo apt-get install eclipse

上一篇:python读取excel,数字都是浮点型,日期格式是数字的解决办法


下一篇:java代理模式及动态代理类