pip install安装dlib.whl文件出现 is not a supported wheel on this platform.

>pip install dlib-19.7.0-cp36-cp36m-win_amd64.whl

ERROR: dlib-19.7.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.

出现这个问题的原因是版本不匹配
查看本机python的版本匹配哪些文件

>>>python

Python 3.7.0 (default, Jun 28 2018, 08:04:48) [MSC v.1912 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type “help”, “copyright”, “credits” or “license” for more information.

>>>import pip._internal.pep425tags

注意:导入的是 pip._internal.pep425tags
导入不完整会出现:AttributeError: module ‘pip._internal’ has no attribute ‘pep425tags’

>>>print(pip._internal.pep425tags.get_supported()) #显示支持版本

[ @ 3101192656712>, , , , , , , , , , , , , , , , , , , , , , , , , ,

可以看到对应的版本是 @ 3101192656712>
找对应的版本安装即可**下面附上链接(成功安装,放心使用):
dlib python3.6

dlib python3.7

你可能感兴趣的:(Python,opencv)