一、前言

在CentOS 上安装fabric时出现问题,首先已安装pip, 用pip执行以下命令pip install

出现以下问题

  1. [niy@niy-computer /]$ sudo pip install fabric
  2. Requirement already satisfied (use --upgrade to upgrade): fabric in /usr/lib/python2.6/site-packages/Fabric-1.3.1-py2.6.egg
  3. Requirement already satisfied (use --upgrade to upgrade): ssh>=1.7.8 in /usr/lib/python2.6/site-packages/ssh-1.8.0-py2.6.egg (from fabric)
  4. Downloading/unpacking pycrypto>=2.1,!=2.4 (from ssh>=1.7.8->fabric)
  5. Running setup.py egg_info for package pycrypto
  6. Installing collected packages: pycrypto
  7. Found existing installation: pycrypto 2.0.1
  8. Uninstalling pycrypto:
  9. Successfully uninstalled pycrypto
  10. Running setup.py install for pycrypto
  11. warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath.
  12. building 'Crypto.Hash._MD2' extension
  13. gcc -pthread -fno-strict-aliasing -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/python2.6 -c src/MD2.c -o build/temp.linux-i686-2.6/src/MD2.o
  14. src/MD2.c:31:20: 错误:Python.h:没有那个文件或目录
  15. src/MD2.c:131: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  16. In file included from src/MD2.c:147:
  17. src/hash_template.c:48: 错误:expected specifier-qualifier-list before ‘PyObject_HEAD’
  18. src/hash_template.c:59: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘PyTypeObject’
  19. src/hash_template.c: 在函数‘newALGobject’中:
  20. src/hash_template.c:69: 警告:隐式声明函数‘PyObject_New’
  21. src/hash_template.c:69: 错误:expected expression before ‘ALGobject’
  22. src/hash_template.c: 在文件层:
  23. src/hash_template.c:76: 错误:expected ‘)’ before ‘*’ token
  24. src/hash_template.c:91: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  25. src/hash_template.c:110: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  26. src/hash_template.c:122: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  27. src/hash_template.c:162: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  28. src/hash_template.c:188: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  29. src/hash_template.c:190: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘ALG_methods’
  30. src/hash_template.c:199: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  31. src/hash_template.c:225: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘ALGtype’
  32. src/hash_template.c:271: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  33. src/hash_template.c:304: 错误:数组元素的类型不完全
  34. src/hash_template.c:305: 错误:‘PyCFunction’未声明(不在函数内)
  35. src/hash_template.c:305: 错误:expected ‘}’ before ‘ALG_new’
  36. src/hash_template.c: 在函数‘init_MD2’中:
  37. src/hash_template.c:339: 错误:‘PyObject’未声明(在此函数内第一次使用)
  38. src/hash_template.c:339: 错误:(即使在一个函数内多次出现,每个未声明的标识符在其
  39. src/hash_template.c:339: 错误:所在的函数内也只报告一次。)
  40. src/hash_template.c:339: 错误:‘m’未声明(在此函数内第一次使用)
  41. src/hash_template.c:351: 错误:‘ALGtype’未声明(在此函数内第一次使用)
  42. src/hash_template.c:351: 错误:‘PyType_Type’未声明(在此函数内第一次使用)
  43. src/hash_template.c:352: 警告:隐式声明函数‘Py_InitModule’
  44. src/hash_template.c:356: 错误:‘o’未声明(在此函数内第一次使用)
  45. src/hash_template.c:356: 警告:隐式声明函数‘PyInt_FromLong’
  46. src/hash_template.c:356: 警告:隐式声明函数‘PyDict_SetItemString’
  47. src/hash_template.c:356: 警告:隐式声明函数‘PyModule_GetDict’
  48. src/hash_template.c:356: 警告:隐式声明函数‘Py_DECREF’
  49. src/hash_template.c:360: 警告:隐式声明函数‘PyErr_Occurred’
  50. src/hash_template.c:361: 警告:隐式声明函数‘Py_FatalError’
  51. error: command 'gcc' failed with exit status 1
  52. Complete output from command /usr/bin/python -c "import setuptools;__file__='/tmp/pip-build-root/pycrypto/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-Ai6cQR-record/install-record.txt --single-version-externally-managed:
  53. running install
  54. running build
  55. running build_py
  56. running build_ext
  57. running build_configure
  58. warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath.
  59. building 'Crypto.Hash._MD2' extension
  60. gcc -pthread -fno-strict-aliasing -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -D_GNU_SOURCE -fPIC -fwrapv -fPIC -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/usr/include/python2.6 -c src/MD2.c -o build/temp.linux-i686-2.6/src/MD2.o
  61. src/MD2.c:31:20: 错误:Python.h:没有那个文件或目录
  62. src/MD2.c:131: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  63. In file included from src/MD2.c:147:
  64. src/hash_template.c:48: 错误:expected specifier-qualifier-list before ‘PyObject_HEAD’
  65. src/hash_template.c:59: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘PyTypeObject’
  66. src/hash_template.c: 在函数‘newALGobject’中:
  67. src/hash_template.c:69: 警告:隐式声明函数‘PyObject_New’
  68. src/hash_template.c:69: 错误:expected expression before ‘ALGobject’
  69. src/hash_template.c: 在文件层:
  70. src/hash_template.c:76: 错误:expected ‘)’ before ‘*’ token
  71. src/hash_template.c:91: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  72. src/hash_template.c:110: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  73. src/hash_template.c:122: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  74. src/hash_template.c:162: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  75. src/hash_template.c:188: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  76. src/hash_template.c:190: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘ALG_methods’
  77. src/hash_template.c:199: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  78. src/hash_template.c:225: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘ALGtype’
  79. src/hash_template.c:271: 错误:expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
  80. src/hash_template.c:304: 错误:数组元素的类型不完全
  81. src/hash_template.c:305: 错误:‘PyCFunction’未声明(不在函数内)
  82. src/hash_template.c:305: 错误:expected ‘}’ before ‘ALG_new’
  83. src/hash_template.c: 在函数‘init_MD2’中:
  84. src/hash_template.c:339: 错误:‘PyObject’未声明(在此函数内第一次使用)
  85. src/hash_template.c:339: 错误:(即使在一个函数内多次出现,每个未声明的标识符在其
  86. src/hash_template.c:339: 错误:所在的函数内也只报告一次。)
  87. src/hash_template.c:339: 错误:‘m’未声明(在此函数内第一次使用)
  88. src/hash_template.c:351: 错误:‘ALGtype’未声明(在此函数内第一次使用)
  89. src/hash_template.c:351: 错误:‘PyType_Type’未声明(在此函数内第一次使用)
  90. src/hash_template.c:352: 警告:隐式声明函数‘Py_InitModule’
  91. src/hash_template.c:356: 错误:‘o’未声明(在此函数内第一次使用)
  92. src/hash_template.c:356: 警告:隐式声明函数‘PyInt_FromLong’
  93. src/hash_template.c:356: 警告:隐式声明函数‘PyDict_SetItemString’
  94. src/hash_template.c:356: 警告:隐式声明函数‘PyModule_GetDict’
  95. src/hash_template.c:356: 警告:隐式声明函数‘Py_DECREF’
  96. src/hash_template.c:360: 警告:隐式声明函数‘PyErr_Occurred’
  97. src/hash_template.c:361: 警告:隐式声明函数‘Py_FatalError’
  98. error: command 'gcc' failed with exit status 1
  99. ----------------------------------------
  100. Rolling back uninstall of pycrypto
  101. Command /usr/bin/python -c "import setuptools;__file__='/tmp/pip-build-root/pycrypto/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-Ai6cQR-record/install-record.txt --single-version-externally-managed failed with error code 1 in /tmp/pip-build-root/pycrypto
  102. Storing complete log in /root/.pip/pip.log

二 解决方案

原因是少了Python的dev

    1. [niy@niy-computer /]$ sudo yum  install python-devel

src/MD2.c:31:20: 错误:Python.h:没有那个文件或目录的更多相关文章

  1. qingstor python-sdk 安装错误 src/MD2.c:31:20: fatal error: Python.h: No such file or directory

    ubuntu安装python qingstor-sdk, src/MD2.c:31:20: fatal error: Python.h: No such file or directory compi ...

  2. 解决 src/MD2.c:31:20: fatal error: Python.h: No such file or directory安装包错误

    在linux命令行安装包时报错 src/MD2.c:31:20: fatal error: Python.h: No such file or directory 原因:缺少了python的dev 解 ...

  3. python.h没有那个文件或目录解决方法

    我用的是Deepin Linux,这应该是linux平台的问题,别的linux os也是执行安装,命令不同而已,windows和Mac不太清楚. 如果你使用的是python2.x,那么使用下面的语句: ...

  4. _mysql.c:29:20: error: Python.h: No such file or directory

    在Centos系统中安装 pip install MySQL-python 提示: _mysql.c:29:20: error: Python.h: No such file or directory ...

  5. busybox编译 fatal error: curses.h: 没有那个文件或目录解决办法

    执行make menuconfig时出现如下错误@ubuntu:/home/dev/busybox-1.19.3# make menuconfig HOSTCC scripts/kconfig/lxd ...

  6. fatal error: openssl/evp.h: 没有那个文件或目录

    在陆佳华<嵌入式系统软硬件协同设计实战指南 第2版>一书的第13章节 编译U-boot时会遇到2个错误.原因很简单,就从一开始的错误提示着手: fatal error: openssl/e ...

  7. 【caffe编译】 fatal error: hdf5.h: 没有那个文件或目录

    src/caffe/layers/hdf5_output_layer.cpp:3:18: fatal error: hdf5.h: 没有那个文件或目录 查找文件 locate hdf5.h 修改Mak ...

  8. error: stdio.h: 没有那个文件或目录

    在64位系统中,编写一个C语言程序后,使用gcc进行编译时,出现了如下的错误: test.c:1:19: fatal  error: stdio.h: 没有那个文件或目录 #include <s ...

  9. fastdfs+nginx make时报错fatal error:fdfs_define.h: 没有那个文件或目录

    环境: ubuntu 18.04.1 fastdfs-nginx-module_v1.16 root@wang-machine:~/桌面/FastDFS# cd nginx-1.8.1/root@wa ...

随机推荐

  1. vscode 问题

    *)不能切换为中文输入法 没有搜索到解决办法,重启应用解决

  2. ArcGIS api for javascript——地图配置-增加一个调试控制台<

    描述 该示例展示了在应用中如何包含一个Dojo调试控制台.可以写信息到控制台来记录发生的事件和应用运行时设置的属性.当调试Internet Explorer浏览器的错误时这是极为有帮助的.(对Fire ...

  3. Unity 之 C# 利用回调函数实现C++匿名函数

    做C++开发的都用过匿名函数很好用,可是C#开发怎么实现呢?前几天做一个拍照功能的时候.我偶然发现某个函数假设是C++的话.用匿名函数太好了,于是開始研究C#的回调,代理.托付等,最后总算是实现了我想 ...

  4. Android 中图能够用到的图片处理类 BitmapUtils

    Android在实际开发中非常多时候都要对图片进行一定的处理,这里总结的BitmapUtils 类包含一下几个功能: 1.Android图片倒影, 2.Android图片模糊处理, 3.Android ...

  5. 《R实战》读书笔记一

    你仅仅要想处理数据,<R实战>这本书就能够助你一臂之力. <R实战>的目标是让你认识R,而且可以对数据进行操作.可视化和理解.该书包含4部分16个章节8个附录. 第一部分:入门 ...

  6. 【python下使用OpenCV实现计算机视觉读书笔记2】图像与字节的变换

    import cv2 import numpy import os # Make an array of 120,000 random bytes. randomByteArray = bytearr ...

  7. HDU 3853 向下向右找出口问题-期望dp

    题意:初始状态在(1,1)的位置.目标是走到(n,n).每次仅仅能向下向右或者不移动.已知在每一个格子时这三种情况的概率,每移动一步消耗2的魔力,求走到终点的使用的魔力的期望. 分析:简单的期望dp, ...

  8. poj2002 哈希

    Squares Time Limit: 3500MS   Memory Limit: 65536K Total Submissions: 17666   Accepted: 6735 Descript ...

  9. Bundles软件

    Bundle 称为:软件集 或 打包捆绑软件(软件束) Bundle就是一组包含了文件集,软件包或许可程序产品的软件,它们组合在一起为了实现一个特定的功能     快速来列出系统bundle软件 sm ...

  10. How Chromium Displays Web Pages: Bottom-to-top overview of how WebKit is embedded in Chromium

    How Chromium Displays Web Pages This document describes how web pages are displayed in Chromium from ...