FileNotFoundError: [Errno 2] No such file or directory: b'liblibc.a'

偶尔善良 提交于 2021-02-08 05:56:52

问题


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


回答1:


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.



来源:https://stackoverflow.com/questions/65410481/filenotfounderror-errno-2-no-such-file-or-directory-bliblibc-a

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!