scapy 模块中缺少 ARP

发布于 2024-10-06 05:48:14 字数 357 浏览 4 评论 0原文

我正在尝试在 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 技术交流群。

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

发布评论

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

评论(1

梦境 2024-10-13 05:48:14

明白了,从版本 v.2 开始,它应该用作 from scapy.all import *

got it , from the version v.2 onward the it should be used as from scapy.all import *

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