python安装dlib库报错问题及解决方法


Posted in Python onMarch 16, 2020

问题描述

我是debain 系的linux系统没遇到这个问题,在centos系统遇到的

Collecting dlib
  Downloading http://mirrors.cloud.aliyuncs.com/pypi/packages/63/92/05c3b98636661cb80d190a5a777dd94effcc14c0f6893222e5ca81e74fbc/dlib-19.19.0.tar.gz (3.2MB)
    100% |????????????????????????????????| 3.2MB 99.4MB/s
Building wheels for collected packages: dlib
  Running setup.py bdist_wheel for dlib ... error
  Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-ld86u12i/dlib/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmp0zu3_xkcpip-wheel- --python-tag cp36:
  running bdist_wheel
  running build
  running build_py
  package init file 'dlib/__init__.py' not found (or not a regular file)
  running build_ext
  Building extension for Python 3.6.8 (default, Aug  7 2019, 17:28:10)
  Invoking CMake setup: 'cmake /tmp/pip-build-ld86u12i/dlib/tools/python -DCMAKE_LIBRARY_OUTPUT_DIRECTORY=/tmp/pip-build-ld86u12i/dlib/build/lib.linux-x86_64-3.6 -DPYTHON_EXECUTABLE=/usr/bin/python3 -DCMAKE_BUILD_TYPE=Release'
  -- The C compiler identification is GNU 4.8.5
  -- The CXX compiler identification is unknown
  -- Check for working C compiler: /usr/bin/cc
  -- Check for working C compiler: /usr/bin/cc -- works
  -- Detecting C compiler ABI info
  -- Detecting C compiler ABI info - done
  CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name.
  CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name.
  -- Found PythonInterp: /usr/bin/python3 (found version "3.6.8")
  -- Found PythonLibs: python3.6m
  -- Performing Test HAS_CPP14_FLAG

主要报错就是

  CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name.

解决办法

yum install cmake gcc-c++

另一个问题
另外一个地方可能会报错

fatal error: Python.h: No such file or directory
 #include <Python.h>
                   
compilation terminated.

这种报错很常见了

解决办法:

debain系

sudo apt install python3-dev

rehat系

yum install python3-devel

总结

到此这篇关于python安装dlib库报错问题及解决方法的文章就介绍到这了,更多相关python安装dlib库报错内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
深度剖析使用python抓取网页正文的源码
Jun 11 Python
Python专用方法与迭代机制实例分析
Sep 15 Python
Python3中常用的处理时间和实现定时任务的方法的介绍
Apr 07 Python
Python调用SQLPlus来操作和解析Oracle数据库的方法
Apr 09 Python
python脚本监控Tomcat服务器的方法
Jul 06 Python
python单例模式实例解析
Aug 28 Python
搞定这套Python爬虫面试题(面试会so easy)
Apr 03 Python
Python求均值,方差,标准差的实例
Jun 29 Python
基于nexus3配置Python仓库过程详解
Jun 15 Python
python字典的值可以修改吗
Jun 29 Python
Python爬虫实现selenium处理iframe作用域问题
Jan 27 Python
Python办公自动化解决world文件批量转换
Sep 15 Python
使用python图形模块turtle库绘制樱花、玫瑰、圣诞树代码实例
Mar 16 #Python
关于win10在tensorflow的安装及在pycharm中运行步骤详解
Mar 16 #Python
Python3.6 中的pyinstaller安装和使用教程
Mar 16 #Python
python pandas利用fillna方法实现部分自动填充功能
Mar 16 #Python
Python Flask上下文管理机制实例解析
Mar 16 #Python
Python threading.local代码实例及原理解析
Mar 16 #Python
python实现ssh及sftp功能(实例代码)
Mar 16 #Python
You might like
第4章 数据处理-php字符串的处理-郑阿奇(续)
2011/07/04 PHP
linux环境apache多端口配置虚拟主机的方法深入介绍
2013/06/09 PHP
PHP的一个完美GIF等比缩放类,附带去除缩放黑背景
2014/04/01 PHP
PHP中读取文件的几个方法总结(推荐)
2016/06/03 PHP
详解PHP变量传值赋值和引用赋值变量销毁
2019/03/23 PHP
PHP切割整数工具类似微信红包金额分配的思路详解
2019/09/18 PHP
js实现特定位取反原理及示例
2014/06/30 Javascript
html文档中的location对象属性理解及常见的用法
2014/08/13 Javascript
微信开发 JS-SDK 6.0.2 经常遇到问题总结
2016/12/08 Javascript
深入理解Angular4订阅(Subscribe)与取消
2017/11/22 Javascript
js getBoundingClientRect使用方法详解
2019/07/17 Javascript
JS中封装axios来管控api的2种方式
2019/09/11 Javascript
js将日期格式转换为YYYY-MM-DD HH:MM:SS
2020/09/18 Javascript
关于Node.js中频繁修改代码重启服务器的问题
2020/10/15 Javascript
[49:27]LGD vs OG 2018国际邀请赛小组赛BO2 第二场 8.16
2018/08/17 DOTA
django rest framework之请求与响应(详解)
2017/11/06 Python
Python+matplotlib实现计算两个信号的交叉谱密度实例
2018/01/08 Python
Django中如何防范CSRF跨站点请求伪造攻击的实现
2019/04/28 Python
python使用pandas处理大数据节省内存技巧(推荐)
2019/05/05 Python
python 计算积分图和haar特征的实例代码
2019/11/20 Python
Python 实现Numpy中找出array中最大值所对应的行和列
2019/11/26 Python
python通过nmap扫描在线设备并尝试AAA登录(实例代码)
2019/12/30 Python
Python拼接字符串的7种方式详解
2020/03/19 Python
Python使用Paramiko控制liunx第三方库
2020/05/20 Python
python中HTMLParser模块知识点总结
2021/01/25 Python
Python爬取网站图片并保存的实现示例
2021/02/26 Python
详解使用CSS3的@media来编写响应式的页面
2017/11/01 HTML / CSS
一些Unix笔试题和面试题
2013/01/22 面试题
初级Java程序员面试题
2016/03/03 面试题
4s店机修工岗位职责
2013/12/20 职场文书
银行类自荐信
2014/02/04 职场文书
毕业生找工作求职信
2014/08/05 职场文书
党员“一帮一”活动总结
2015/05/07 职场文书
英语专业毕业论文答辩开场白
2015/05/27 职场文书
小学学习委员竞选稿
2015/11/20 职场文书
九大龙王魂骨,山龙王留下躯干骨,榜首死的最憋屈(被捏碎)
2022/03/18 国漫