I want to write some install scripts by python, it should know the OS to choose either apt command or yum command.

It seems sys.platform can tell 'win32' or the others, but how to know it is working on Debian or CentOS in Python?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 7 down vote accepted

The platform module in the standard library has what you want.

import platform
print platform.linux_distribution()
link|improve this answer
1  
Thanks, it works. But I found platform.linux_distribution() is supported from Python 2.6. For the popular CentOS 5.5, because its default Python version is 2.4.3, so, it has to use platform.dist(). – William May 10 '11 at 15:47
feedback

If you just need to know whether to use yum or apt, one approach is simply to pick one of those commands and try it. If it works, it works; if not, catch the exception and try the other command.

link|improve this answer
1  
This is certainly the "pythonic" way of doing it... If the OP just wants to choose between yum, apt, zypper, emerge, etc it's probably the best way. On the other hand if there is other distro-specific functionality, it may make more sense to use the platform module... Either way, +1 from me! – Joe Kington May 10 '11 at 15:05
Thanks too. If there is no good way to differentiate these platforms, i will use your method. – William May 10 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.