Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在 Linux 中构建安装程序。安装程序的第一步是识别保险丝版本。如果版本大于要求,则继续安装过程。
如何使用 Python 获取 fuse 版本?
问候, 伊维吉
至少在我的系统上,fusermount -V给出了当前版本的 Fuse。
fusermount -V
所以像:
with os.popen('fusermount -V') as p: versiontext = p.read() #do something with version text
应该管用。