尝试从Ubuntu安装dlib和face_recognition 引用https://www.learnopencv.com/install-dlib-on-ubuntu/ 但在执行以下命令后: 我被困在:
Building wheels for dlib, face-recognition-models Building wheel for dlib (setup.py) ... /(looping stick)
答案 0 :(得分:5)
为了补充mshahiddev的答案,我添加了[general]
accounts = Gmail
[Account Gmail]
localrepository = Local
remoterepository = Remote
synclabels = yes
labelsheader = X-Keywords
[Repository Local]
type = GmailMaildir
localfolders = ~/emails
nametrans = lambda f: '[Gmail]/' + f if f in ['Drafts', 'Starred', 'Important', 'Spam', 'Trash', 'All Mail', 'Sent Mail$
[Repository Remote]
type= Gmail
auth_mechanisms = XOAUTH2
oauth2_client_id = xxxxxx.apps.googleusercontent.com
oauth2_client_secret = xxxxxxxxx
oauth2_request_url = https://accounts.google.com/o/oauth2/token
oauth2_refresh_token = xxxxxx
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
nametrans = lambda f: f.replace('[Gmail]/', '') if f.startswith('[Gmail]/') else f
,它表明它可以正常工作。
只花了很长时间才能完成。我只需要等待。
-vvv
答案 1 :(得分:2)
内存是问题。我的 AWS 实例只有 1 GB 空间。阅读问题直觉后,我创建了一个 6 GB 以上的交换空间,并且成功了。
现在,我可以完成安装了。
答案 2 :(得分:1)
就我而言,我只需要等待大约。 10 分钟,“造轮圈”结束,然后它就安装成功了! 建议至少先等待 10-15 分钟,然后再尝试上面给出的其他答案。
答案 3 :(得分:0)
这是另一位用户在我的问题上发表的相同问题。
“您确定发布了完整的错误日志吗?如果是,您可以运行pip install face_recognition -vvv并将输出添加到问题中吗?” – 5月9日7:37骑马
成功了!请谢谢他或她。
答案 4 :(得分:0)
首先,您应该安装cmake
您可以使用以下命令:
pip install cmake
一切正常之后!
答案 5 :(得分:0)