我正在尝试从以下位置设置 snmpsim:https://github.com/inexio/snmpsim
当我尝试运行以下行时:
snmpsim-command-responder --data-dir=./data --agent-udpv4-endpoint=127.0.0.1:1024
返回:
line 9, in <module>
import asyncore
ModuleNotFoundError: No module named 'asyncore'
我尝试使用
重新安装它pip install --upgrade pysnmp
我什至尝试了全新安装,但仍然没有成功。
该错误是需要的,因为您使用的是 asyncore 免费 Python 3.12。
您可以切换到https://github.com/lextudio/snmpsim,它也是免费的。