What do I need to look at to see if I'm on Windows, Unix, etc?
|
See: platform — Access to underlying platform’s identifying data |
|||||||
|
|
Dang -- lbrandy beat me to the punch, but that doesn't mean I can't provide you with the system results for Vista! |
|||
|
|
|
For the record here's the results on Mac:
|
||||
|
|
|
You can also use sys.platform if you already have imported sys and you don't want to import another module
|
|||
|
|
|
I do this
Docs here : sys.platform. Everything you need is probably in the sys module. |
||||
|
|
|
I am using the WLST tool that comes with weblogic, and it doesn't implement the platform package.
Apart from patching the system javaos.py (issue with os.system() on windows 2003 with jdk1.5) (which I can't do, I have to use weblogic out of the box), this is what I use:
|
||||
|
|
|
A comparison between the different methods, and what they return on different operating systems can be found here: OS_flavor_name_version |
||||
|
|
|
in the same vein....
|
|||
|
|
/usr/bin/python3.2
|
|||||||
|
|
For Jython the only way to get os name I found is to check
|
|||
|
|
|
Interesting results on windows 8:
Edit: That's a bug |
|||
|
|
|
If you not looking for the kernel version etc, but looking for the linux distribution you may want to use the following in python2.6+
in python2.4
Obviously, this will work only if you are running this on linux. If you want to have more generic script across platforms, you can mix this with code samples given in other answers. |
||||
|
|