vote up 5 vote down star

As the title says how can I find the current OS in python?

flag

3 Answers

vote up 14 vote down check
import os
print os.name

This gives you the essential information you will usually need. To distinguish between, say, different editions of Windows, you will have to use a platform-specific method.

link|flag
vote up 12 vote down

I usually use sys.platform to get the platform. sys.platform will distinguish between linux, other unixes, and OS X while os.name is "posix" for all of them.

For much more detailed information, use the platform module. This has cross-platform functions that will give you information on the machine architecture, OS and OS version, version of Python, etc. Also it has os-specific functions to get things like the particular linux distribution.

link|flag
vote up 6 vote down

http://python.org/doc/2.5/lib/module-os.html

To compliment Greg's post, if you're on a posix system, which includes MacOS, Linux, Unix, etc. you can use os.uname() to get a better feel for what kind of system it is.

link|flag
Although your answer was fist and was correct, Greg Hewgill's answer was more complete, I appreciate your answer and advise you to, post more then just links, in the future. – Unkwntech Sep 21 '08 at 6:07
Yeah, it's the fastest gun in the west problem. I tend to post things quickly then edit with more info. – bmdhacks Sep 21 '08 at 6:09
I usually wait to answer my questions an I come back to them to see if there are any better posts even after I have accepted one. – Unkwntech Sep 21 '08 at 6:17

Your Answer

Get an OpenID
or

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