我正在尝试在python中使用netsnmp但是在遵循python中与netsnmp相关的所有建议之后无法导入。我使用以下命令安装了netsnmp
yum install net-snmp net-snmp-utils
easy_install ipython
snmpd服务正在运行。 它仍然会抛出此错误
ImportError: No module named netsnmp
我使用的是Cent os 6.5和Python 2.6.6版 如果安装不正确或缺少任何其他配置,请提供帮助。
答案 0 :(得分:2)
要在python中导入netsnmp只需要 net-snmp-python , net-snmp net-snmp-utils 都可以删除。 所以只是
yum install net-snmp-python
将在Cent os 6.5上将netsnmp库导入python
yum install net-snmp net-snmp-utils
将启用Linux终端的SNMP查询。 两者都可以独立工作。