导入错误:没有名为 paramiko 的模块
我已经在 Red hat linux 中安装了“python-paramiko”和“python-pycrypto”。 但当我运行示例程序时,我仍然收到“ImportError:没有名为 paramiko 的模块”。
我使用以下命令检查了已安装的软件包并得到了确认。
ncmdvstk:~/pdem $ rpm -qa | grep python-p
python-paramiko-1.7.6-1.el3.rf
python-pycrypto-2.3-1.el3.pp
我的示例程序给出了导入错误:
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(
paramiko.AutoAddPolicy())
ssh.connect('127.0.0.1', username='admin',
password='admin')
I have installed "python-paramiko" and "python-pycrypto" in Red hat linux.
But still when i run the sample program i get "ImportError: No module named paramiko".
I checked the installed packages using below command and got confirmed.
ncmdvstk:~/pdem $ rpm -qa | grep python-p
python-paramiko-1.7.6-1.el3.rf
python-pycrypto-2.3-1.el3.pp
My sample program which give the import error:
import paramiko
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(
paramiko.AutoAddPolicy())
ssh.connect('127.0.0.1', username='admin',
password='admin')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上所有这些包都安装在 python 文件夹之外。
我所做的就是将包从 python 文件夹链接到包文件夹。
它工作得很好。
Actually all these packages were installed outside the python folder.
And all I did was linking the packages from python folder to packages folder.
It worked perfectly.