macos 安装dlib 人脸识别库 python3

macos 安装dlib 人脸识别库 python3

macos有好处就是可以使用brew来安装!直接打开命令行输入代码
如果下载慢的可以看下面,我附上的修改为国内中科大源的代码
如果刚开始一直停在 Updating Homebrew…
就按 control + c 跳过就可以了

brew install openblas 
brew install opencv
brew install cmake
sudo pip3 install dlib

至此已安装成功!!!

附上:如果brew下载慢可以换上国内中科大的源!

cd "$(brew --repo)"

git remote set-url origin https://mirrors.ustc.edu.cn/brew.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"

git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git

echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile

source ~/.bash_profile

这样就ok了!
macos 安装dlib 人脸识别库 python3_第1张图片

你可能感兴趣的:(IT,python,科技)