CentOS 安装paramiko 运行报错 'module' object has no attribute 'GSSException'

网上的解决办法都是:

ssh_gss.py,53,54行改成:
53 import gssapi.error
54 GSS_EXCEPTIONS = (gssapi.error.GSSException,)

但是从可移植性的角度来说这么改肯定是下下策。

其实是缺少个依赖包,命令行 :

yum install python-paramiko 

安装完成后问题解决

CentOS 安装paramiko 运行报错 'module' object has no attribute 'GSSException'

原文地址:https://www.cnblogs.com/sjx1996/p/10369011.html

时间: 2024-11-05 19:02:21

CentOS 安装paramiko 运行报错 'module' object has no attribute 'GSSException'的相关文章

Python首次安装后运行报错(0xc000007b)的解决方法

最近在安装完Python后运行发现居然报错了,错误代码是0xc000007b,于是通过往上查找发现是因为首次安装Python缺乏VC++库的原因,下面通过这篇文章看看如何解决这个问题吧. 错误提示如下: 其实这是一个挺常见的系统报错,缺乏VC++库. 我安装的是python3.5.2,这个版本需要的vc版本是2015的了,下载:Microsoft Visual C++ 2015 update 3 安装完后发现就正常了: 总结 通过以上的方法就能轻松解决首次安装Python后运行报错的问题,希望本

npm 安装文件 运行报错 %1 is not a valid Win32 application

安装了那个模板出了错报这样的错误 "%1 is not a valid Win32 application" 你就除那个模板新安装. 如下例: 运行 npm install -g @angular/cli 报以下错误 Binary has a problem: Error: %1 is not a valid Win32 application. \\?\C:\Users\Administrator\AppData\Roaming\npm\node_modules\@angular\c

报错"module" object is not callable

由于未找到原作者出处,只能说从这个博客上学习了:转自http://blog.csdn.net/liuyuehui110/article/details/7249307 原因分析: Python 导入模块有两种方式: import module from module import * 区别是前者导入的模块使用时要加上模块名module的限定,后者不需要 如图:我们需要改成: ct = ClassTest.ClassTest('tet',50) 方能正常运行.

iReport-3.7.4安装后运行报错 cannot find java.exe

解决方法:到 ireport 安装的目录下找到 etc 目录下的 ireport.conf 文件 将 jdkhome 前面的"#"去掉 ,路径改为自己本机的 JAVA_HOME 路径 eg. jdkhome="C:\Program Files\Java\jdk1.6.0_45"

ansible安装后运行报错cryptography

[[email protected] ~]# ansible all -m ping ERROR! Unexpected Exception, this is probably a bug: (cryptography 0.8.2 (/usr/lib64/python2.7/site-packages), Requirement.parse('cryptography>=1.1')) [[email protected] ~]# rpm -qa |grep python-crypto [[ema

pycharm 安装第三方库报错:AttributeError: 'module' object has no attribute 'main'

今天在做自动化测试的时候,碰到了这个问题. 尝试了环境变量,升级PIP版本,都没有效果. 后来就去百度,有前辈碰到过类似的问题. 其实很简单,就是PYCHARM版本的问题. 把pycharm的版本升级到2018年1月以后的版本就好了,重启电脑就解决了. 其主要原因是 新版的 pip 更改了 部分api 将其中 pip.main() 改为 pip_main(), 旧版的pycharm中 在packaging_tool.py 中引用的就是 pip.main()方法,所以会报错. 最简单的.最完美的解

安装pytest-allure-adaptor后,运行报错:AttributeError: module 'pytest' has no attribute 'allure'

原因:因为pytest-allure-adaptor库基本被python3放弃了,运行很不友好,反正我运行就是报错 解决方法: 先卸载:pip uninstall pytest-allure-adaptor 再安装:pip allure-pytest 然后再去对应case的文件夹下面cmd里面运行: pytest -s -q --alluredir  report  (可以改为你想设的路径,如果是report默认当前目录下),就会生成report文件夹了 安装pytest-allure-adap

Django 运行报错 ImportError: No module named 'PIL'

importError: No module named pil WIN7 64位系统安装 Python PIL 首先通过easy_install安装 说找不到pil模块. 第二通过去官网找:http://www.pythonware.com/products/pil/ 找了几个版本安装版的没有64位的,源码包的下载无法安装说要安装vs2008我也安装了还是不行.最后在这个地址找到:http://www.lfd.uci.edu/~gohlke/pythonlibs/ Pillow is a re

python 脚本运行时报错: AttributeError: 'module' object has no attribute ***

最近在编写Python脚本过程中遇到一个问题比较奇怪:Python脚本完全正常没问题,但执行总报错"AttributeError: 'module' object has no attribute 'xxx'".这其实是.pyc文件存在问题. 问题定位: 查看import库的源文件,发现源文件存在且没有错误,同时存在源文件的.pyc文件 问题解决方法: 1. 命名py脚本时,不要与python预留字,模块名等相同 2. 删除该库的.pyc文件(因为py脚本每次运行时均会生成.pyc文件