Domanda

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

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top