0

Python 2.7.18 64 bits.

Code:

import scapy.all as scapy

def scan(ip):
    scapy.arping(ip)

scan("192.168.1.1/24")

Error:

Import "scapy.all" could not be resolved
mkrieger1
  • 19,194
  • 5
  • 54
  • 65
trypull
  • 11

1 Answers1

0

this might be the answer: using this statement from scapy.all import *

Dharman
  • 30,962
  • 25
  • 85
  • 135