문제

I have to build installer in Linux. First step of the installer is to identify the fuse version. If the version is bigger than required than proceed with install process.

How can I get the fuse version using Python?

Regards, Ivgi

도움이 되었습니까?

해결책

At least on my system, fusermount -V gives the current version of Fuse.

So something like:

with os.popen('fusermount -V') as p:
    versiontext = p.read()
#do something with version text

should work.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top