import scapy.all as scapy
def scan(ip):
scapy.arping(ip)
scan("192.168.0.1/24")
error:ModuleNotFoundError: no module named as 'scapy'
Asked
Active
Viewed 20 times
0

SCouto
- 7,808
- 5
- 32
- 49

Mohammed Shahed
- 33
- 3
-
2Did you run `pip install scapy`? – Filnor Jul 16 '20 at 07:43
-
I agree with @Filnor, most likely it is not installed: can you run that for us: 'pip list' and give us the output? – fgagnaire Jul 17 '20 at 13:40