首先,不知道是平台原因还是版本原因,在32位linux下安装无任何问题,环境为cent5.5,ptyhon 2.4.3 .到64位下环境为cent6.0,python 2.6.3。
paramiko为linux下连接ssh的python模块,可以用来连接ssh,ftp等。
因为这个模块要安装pycrypto,自己在64位下安装时报错:
- gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.6 -c Cython/Plex/Scanners.c -o build/temp.linux-x86_64-2.6/Cython/Plex/Scanners.o
- Cython/Plex/Scanners.c:4:20: error: Python.h: No such file or directory
- Cython/Plex/Scanners.c:6:6: error: #error Python headers needed to compile C extensions, please install development version of Python.
- error: command 'gcc' failed with exit status 1
然后又安装cython,依然又是这个错误,看老是提示少python.h。
没办法,只好找狗哥,狗说安装python-dev就OK了。(按道理应该是更新lib库)
最后直接用 yum install python-devel搞定。
网上如果有的网友说这个也找不到时可以自己手动更新,方法自己也没试,估计到python官网上会有,得你自己去找了,呵呵
仅此写作,留以后观看。