scapy 模块中缺少 ARP
我正在尝试在 python 中使用 scapy 当我尝试导入 scapy import scapy
它很好,但是 scapy.ARP() 行会导致
回溯(最近一次调用最后一次): 文件“”,第 1 行,位于 属性错误:“模块”对象没有属性“ARP”
dir(scapy)
生成的 属性“ARP” '['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__']'
这里可能有什么问题?如果需要的话,我需要单独安装软件包吗?
i am trying to use scapy in python
while i try to import the scapy import scapy
its just fine but the line scapy.ARP()
causes a
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'module' object has no attribute 'ARP'
a dir(scapy)
produces
'['__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__']'
what might be the problem here ? do i need to install the packages separately if yes how to do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
明白了,从版本 v.2 开始,它应该用作 from
scapy.all import *
got it , from the version v.2 onward the it should be used as from
scapy.all import *