导入错误:没有名为 paramiko 的模块

发布于 2024-12-07 02:38:25 字数 498 浏览 0 评论 0原文

我已经在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光瘦了 2024-12-14 02:38:25

实际上所有这些包都安装在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文