蟒蛇 帕拉米科
已安装适用于 Python 的 Paramiko 和适用于 Windows 7 机器的 PyCrypto。
import paramiko
ssh = paramiko.SSHClient()
尝试了上述命令,但我不断收到此错误消息:
AttributeError: 'module' object has no attribute 'SSHClient'
但如果我一次一行键入上述命令,此错误消息就会消失。
有什么帮助吗?
Have installed Paramiko for Python and PyCrypto for Windows 7 machine.
import paramiko
ssh = paramiko.SSHClient()
Tried the above commands but I keep getting this error msg:
AttributeError: 'module' object has no attribute 'SSHClient'
but this error message goes away if I key in the above commands one line at a time.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是否偶然将文件命名为
paramiko.py
?您需要将其命名为其他名称以避免出现该错误。
By chance have you called your file
paramiko.py
?You'll need to name it something else to avoid getting that error.
windows:
1.下载PyCrypto:http://www.voidspace.org。 uk/python/pycrypto-2.6.1/
2.安装PyCrypto,下一步再下一步
3.pip install paramiko
windows:
1.download PyCrypto:http://www.voidspace.org.uk/python/pycrypto-2.6.1/
2.install PyCrypto,next and next and next
3.pip install paramiko
你可以检查这个命令:
you can check this command :