关于python:如何在不使用pip的情况下在Linux终端中查看pysnmp版本

How to see the pysnmp version in Linux terminal without using pip

我已经在Linux中安装了pysnmp模块。

我想知道安装了哪个版本的pysnmp。如何通过Linux终端查看pysnmp版本….pysnmp -V不起作用。

我的Linux中没有安装PIP,所以pip show pysnmp也不工作。


您还可以从python解释器内部检查模块的版本:

1
2
3
>>> import pysnmp
>>> pysnmp.__version__
'4.3.2'

要从shell执行此操作,只需通过python -c执行即可。

1
2
$ python -c"import pysnmp; print(pysnmp.__version__)"
'4.3.2'

这在从shell启动python解释器时执行一个字符串,允许您轻松地运行短命令,而无需编写新的脚本文件或加载交互式intepreter。


你可以试试看

1
pip show pysnmp

或者任何你想要的版本

1
pip show YOUR_PACKAGE_NAME | grep Version