Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to check the operating system (on the computer where the script runs).

I know I can use os.system('umount -o') in Linux, but it gives me a message in the console, and I want to write to a variable.

It will be okay if the script can tell if it is Mac, Windows or Linux. How can I check it?

share|improve this question
What exactly are you planning to do with the information? – Karl Knechtel Nov 22 '11 at 0:16
1  
possible duplicate of How can I tell What OS I am running on from Python? – BoltClock Nov 22 '11 at 9:52

5 Answers

up vote 13 down vote accepted

This:

from sys import platform as _platform
if _platform == "linux" or _platform == "linux2":
    # linux
elif _platform == "darwin":
    # OS X
elif _platform == "win32":
    # Windows...
share|improve this answer
1  
Note that in cygwin, it returns "cygwin" not "win32" as someone might expect. – MichaƂ Bentkowski Nov 22 '11 at 11:03
This is what i need :) Thanks! – kolek Nov 22 '11 at 20:47

You can get a pretty coarse idea of the OS you're using by checking sys.platform.

Once you have that information you can use it to determine if calling something like os.uname() is appropriate to gather more specific information. You could also use something like Python System Information on unix-like OSes, or pywin32 for Windows.

There's also psutil if you want to do more in-depth inspection without wanting to care about the OS.

share|improve this answer

You can use sys.platform.

share|improve this answer

More detailed information are available in the platform module.

share|improve this answer

t is important to run this command on every file system as part of system initialization. You must be able to read the device file on which the file system resides (for example, the /dev/hd0 device). Normally, the file system is consistent, and the fsck command merely reports on the number of files, used blocks, and free blocks in the file system. If the file system is inconsistent, the fsck command displays information about the inconsistencies found and prompts you for permission to repair them.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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