我正在尝试使用pip(在Windows中)安装snmpresponder。我正在使用python 2.7。我从以下网站找到了snmpresponder。 http://snmplabs.com/snmpresponder/

这就是我尝试过的

pip install snmpresponder


但是我收到以下错误。

Collecting snmpresponder
  Using cached https://files.pythonhosted.org/packages/ba/47/5fee2bffe4b63f750d9f55118fce1796610eb2bf90b8526f584b05d56cb8/snmpresponder-0.0.2-py2.py3-none-any.whl

ERROR: Could not find a version that satisfies the requirement pysnmp>=5.0.0 (from snmpresponder) (from versions: 4.1.16d, 4.1.12a0, 4.1.13a0, 4.1.15a0, 4.1.16a0, 4.1.16b0, 4.1.16rc0, 4.2.1, 4.2.2, 4.2.3, 4.2.4, 4.2.5, 4.3.0, 4.3.1, 4.3.2, 4.3.3, 4.3.4, 4.3.5, 4.3.6, 4.3.7, 4.3.8, 4.3.9, 4.3.10, 4.4.1, 4.4.2, 4.4.3, 4.4.4, 4.4.5, 4.4.6, 4.4.7, 4.4.8, 4.4.9, 4.4.10, 4.4.11, 4.4.12)
ERROR: No matching distribution found for pysnmp>=5.0.0 (from snmpresponder)


并且我检查了我的版本,它显示了4.4.12(使用pip show pysnmp)

Name: pysnmp
Version: 4.4.12
Summary: SNMP library for Python
Home-page: https://github.com/etingof/pysnmp
Author: Ilya Etingof
Author-email: [email protected]
License: BSD
Location: c:\python27\lib\site-packages
Requires: pycryptodomex, pysmi, pyasn1


我也尝试了更新,但仍显示版本低于5.0.0?那么我应该如何安装snmpresponder?我应该更改pysnmp还是使用其他方式下载它。请询问您是否需要更多详细信息。我的基本需求是修复SNMP代理方面遇到的一些错误。

最佳答案

SNMP响应器工具仍处于工作状态。最好从GitHub中提取snmpresponder,它取决于pysnmp的GitHub版本,因此可以立即满足依赖关系。

10-06 12:37