我安装了 Python 模块construct并statlib使用setuptools:
construct
statlib
setuptools
sudo apt-get install python-setuptools sudo easy_install statlib sudo easy_install construct
如何从命令行检查它们的版本?
pip
如果你已经pip安装,你可以使用:
pip show statlib pip show construct
此命令将显示有关该包的详细信息,包括其版本。
您还可以通过运行 Python 脚本或使用交互式 Python shell 来检查版本:
python
``` import statlib import construct
print(statlib.version) print(construct.version) ```
easy_install
如果你使用 安装软件包easy_install,你也可以使用以下命令检查其版本:
easy_install -m statlib easy_install -m construct
这将向您显示版本以及其他元数据。
选择最适合您的方法!