本文介绍了FileNotFoundError: [Errno 2] 没有那个文件或目录: b'liblibc.a'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
import scapy.all as scapy
def scan(ip):
scapy.arping(ip)
scan("192.168.196.0")
使用scapy进行arping时出现上述错误python 版本 3.9.1
Above error when using scapy for arpingpython version 3.9.1
推荐答案
cd /usr/lib/x86_64-linux-gnu/
ln -s -f libc.a liblibc.a
这将创建一个符号链接以适应 python 3.9 中重命名的文件.
This creates a symbolic link to accommodate for the renamed file in python 3.9.
这篇关于FileNotFoundError: [Errno 2] 没有那个文件或目录: b'liblibc.a'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!