如何在不使用 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
也无法正常工作..
你可以试试
pip show pysnmp
或者你想要的任何版本
pip show YOUR_PACKAGE_NAME | grep Version
您还可以从 Python 解释器内部检查模块的版本:
>>> import pysnmp
>>> pysnmp.__version__
'4.3.2'
要从 shell 执行此操作,只需通过 python -c
执行即可。
$ python -c "import pysnmp; print(pysnmp.__version__)"
'4.3.2'
这会在从 shell 启动 Python 解释器时执行一个字符串,使您可以轻松地 运行 简短命令,而无需编写新的脚本文件或加载交互式解释器。
我已经在 Linux 中安装了 pysnmp 模块。
我想知道安装了哪个版本的pysnmp。如何通过 Linux 终端查看 pysnmp 版本..? pysnmp -V
没有成功。
我的 linux 中没有安装 pip,所以 pip show pysnmp
也无法正常工作..
你可以试试
pip show pysnmp
或者你想要的任何版本
pip show YOUR_PACKAGE_NAME | grep Version
您还可以从 Python 解释器内部检查模块的版本:
>>> import pysnmp
>>> pysnmp.__version__
'4.3.2'
要从 shell 执行此操作,只需通过 python -c
执行即可。
$ python -c "import pysnmp; print(pysnmp.__version__)"
'4.3.2'
这会在从 shell 启动 Python 解释器时执行一个字符串,使您可以轻松地 运行 简短命令,而无需编写新的脚本文件或加载交互式解释器。