12
import scapy.all as scapy
def scan(ip):
    scapy.arping(ip)
scan("192.168.196.0")

Above error when using scapy for arping python version 3.9.1

Viketan Revankar
  • 121
  • 1
  • 1
  • 3
  • Does this answer your question? [python scapy.all file not found](https://stackoverflow.com/questions/65410697/python-scapy-all-file-not-found) – Carcigenicate Dec 22 '20 at 15:23

1 Answers1

22
cd /usr/lib/x86_64-linux-gnu/
ln -s -f libc.a liblibc.a

This creates a symbolic link to accommodate for the renamed file in python 3.9.

Roshin Raphel
  • 2,612
  • 4
  • 22
  • 40