我需要查看我是在Windows还是Unix等?
答案 0 :(得分:656)
>>> import os
>>> print os.name
posix
>>> import platform
>>> platform.system()
'Linux'
>>> platform.release()
'2.6.22-15-generic'
platform.system()
的输出如下:
Linux
Darwin
Windows
请参阅:platform — Access to underlying platform’s identifying data
答案 1 :(得分:163)
>>> import os
>>> os.name
'nt'
>>> import platform
>>> platform.system()
'Windows'
>>> platform.release()
'Vista'
...我无法相信没有人为Windows 10发布过一个:
>>> import os
>>> os.name
'nt'
>>> import platform
>>> platform.system()
'Windows'
>>> platform.release()
'10'
答案 2 :(得分:118)
这里的记录是Mac上的结果:
>>> import os
>>> os.name
'posix'
>>> import platform
>>> platform.system()
'Darwin'
>>> platform.release()
'8.11.1'
答案 3 :(得分:85)
使用python区分OS的示例代码:
from sys import platform as _platform
if _platform == "linux" or _platform == "linux2":
# linux
elif _platform == "darwin":
# MAC OS X
elif _platform == "win32":
# Windows
elif _platform == "win64":
# Windows 64-bit
答案 4 :(得分:38)
如果您已经导入了sys并且不想导入另一个模块,也可以使用sys.platform
>>> import sys
>>> sys.platform
'linux2'
答案 5 :(得分:30)
如果您想要用户可读的数据但仍然详细,可以使用platform.platform()
>>> import platform
>>> platform.platform()
'Linux-3.3.0-8.fc16.x86_64-x86_64-with-fedora-16-Verne'
您可以通过以下几种不同的方式来确定自己的位置
import platform
import sys
def linux_distribution():
try:
return platform.linux_distribution()
except:
return "N/A"
print("""Python version: %s
dist: %s
linux_distribution: %s
system: %s
machine: %s
platform: %s
uname: %s
version: %s
mac_ver: %s
""" % (
sys.version.split('\n'),
str(platform.dist()),
linux_distribution(),
platform.system(),
platform.machine(),
platform.platform(),
platform.uname(),
platform.version(),
platform.mac_ver(),
))
此脚本的输出在几个不同的系统(Linux,Windows,Solaris,MacOS)上运行,架构(x86,x64,Itanium,power pc,sparc)可在此处获取:https://github.com/hpcugent/easybuild/wiki/OS_flavor_name_version
例如,Ubuntu 12.04服务器给出了:Python version: ['2.6.5 (r265:79063, Oct 1 2012, 22:04:36) ', '[GCC 4.4.3]']
dist: ('Ubuntu', '10.04', 'lucid')
linux_distribution: ('Ubuntu', '10.04', 'lucid')
system: Linux
machine: x86_64
platform: Linux-2.6.32-32-server-x86_64-with-Ubuntu-10.04-lucid
uname: ('Linux', 'xxx', '2.6.32-32-server', '#62-Ubuntu SMP Wed Apr 20 22:07:43 UTC 2011', 'x86_64', '')
version: #62-Ubuntu SMP Wed Apr 20 22:07:43 UTC 2011
mac_ver: ('', ('', '', ''), '')
答案 6 :(得分:19)
答案 7 :(得分:11)
新答案怎么样:
import psutil
psutil.MACOS #True (OSX is deprecated)
psutil.WINDOWS #False
psutil.LINUX #False
如果我使用MACOS
,这将是输出答案 8 :(得分:11)
我正在使用weblogic附带的WLST工具,但它没有实现平台包。
wls:/offline> import os
wls:/offline> print os.name
java
wls:/offline> import sys
wls:/offline> print sys.platform
'java1.5.0_11'
除了修补系统 javaos.py (issue with os.system() on windows 2003 with jdk1.5)(我不能这样做,我必须开箱即用weblogic),这就是我使用的:
def iswindows():
os = java.lang.System.getProperty( "os.name" )
return "win" in os.lower()
答案 9 :(得分:9)
/usr/bin/python3.2
def cls():
from subprocess import call
from platform import system
os = system()
if os == 'Linux':
call('clear', shell = True)
elif os == 'Windows':
call('cls', shell = True)
答案 10 :(得分:9)
对于Jython,我找到的获取os名称的唯一方法是检查os.name
Java属性(尝试使用sys
,os
和platform
模块进行Jython 2.5.3在WinXP上):
def get_os_platform():
"""return platform name, but for Jython it uses os.name Java property"""
ver = sys.platform.lower()
if ver.startswith('java'):
import java.lang
ver = java.lang.System.getProperty("os.name").lower()
print('platform: %s' % (ver))
return ver
答案 11 :(得分:9)
短篇小说
使用platform.system()
。它返回Windows
,Linux
或Darwin
(对于OSX)。
长篇故事
有3种方法可以在Python中获得操作系统,每种方法各有优缺点:
方法1
>>> import sys
>>> sys.platform
'win32' # could be 'linux', 'linux2, 'darwin', 'freebsd8' etc
这是如何工作的(source):内部调用OS API以获取OS定义的OS名称。有关各种特定于操作系统的值,请参见here。
专业人士:没有魔法,低水平。
缺点:取决于操作系统版本,因此最好不要直接使用。
方法2
>>> import os
>>> os.name
'nt' # for Linux and Mac it prints 'posix'
这是如何工作的(source):在内部检查python是否具有称为posix或nt的特定于操作系统的模块。
Pro:易于检查posix OS
缺点:Linux或OSX之间没有区别。
方法3
>>> import platform
>>> platform.system()
'Windows' # for Linux it prints 'Linux', Mac it prints `'Darwin'
这是如何工作的(source):内部将最终调用内部OS API,获取特定于操作系统版本的名称,例如“ win32”或“ win16”或“ linux1”,然后将其标准化为更通用的名称,例如“ Windows”或“ Linux”或“ Darwin”(通过应用几种启发式方法)。
Pro:适用于Windows,OSX和Linux的最佳便携式方式。
缺点:Python人员必须保持规范化启发式更新。
摘要
platform.system()
。posix
或nt
进行特定于操作系统的调用,请使用os.name
。sys.platform
。答案 12 :(得分:9)
>>> import platform
>>> platform.system()
答案 13 :(得分:8)
我开始更加系统地列出使用各种模块可以期望得到的值(可以随意编辑和添加系统):
os.name posix
sys.platform linux
platform.system() Linux
sysconfig.get_platform() linux-x86_64
platform.machine() x86_64
platform.architecture() ('64bit', '')
sys.platform
带有内核版本的后缀,例如linux2
,其他所有内容都保持不变platform.architecture() = ('64bit', 'ELF')
(32位列在32位子系统中运行)
official python installer 64bit 32bit
------------------------- ----- -----
os.name nt nt
sys.platform win32 win32
platform.system() Windows Windows
sysconfig.get_platform() win-amd64 win32
platform.machine() AMD64 AMD64
platform.architecture() ('64bit', 'WindowsPE') ('64bit', 'WindowsPE')
msys2 64bit 32bit
----- ----- -----
os.name posix posix
sys.platform msys msys
platform.system() MSYS_NT-10.0 MSYS_NT-10.0-WOW
sysconfig.get_platform() msys-2.11.2-x86_64 msys-2.11.2-i686
platform.machine() x86_64 i686
platform.architecture() ('64bit', 'WindowsPE') ('32bit', 'WindowsPE')
msys2 mingw-w64-x86_64-python3 mingw-w64-i686-python3
----- ------------------------ ----------------------
os.name nt nt
sys.platform win32 win32
platform.system() Windows Windows
sysconfig.get_platform() mingw mingw
platform.machine() AMD64 AMD64
platform.architecture() ('64bit', 'WindowsPE') ('32bit', 'WindowsPE')
cygwin 64bit 32bit
------ ----- -----
os.name posix posix
sys.platform cygwin cygwin
platform.system() CYGWIN_NT-10.0 CYGWIN_NT-10.0-WOW
sysconfig.get_platform() cygwin-3.0.1-x86_64 cygwin-3.0.1-i686
platform.machine() x86_64 i686
platform.architecture() ('64bit', 'WindowsPE') ('32bit', 'WindowsPE')
一些评论:
distutils.util.get_platform()
,它与`sysconfig.get_platform 要与您的系统进行比较,只需运行此脚本(如果缺少,请在此处附加结果:)
from __future__ import print_function
import os
import sys
import platform
import sysconfig
print("os.name ", os.name)
print("sys.platform ", sys.platform)
print("platform.system() ", platform.system())
print("sysconfig.get_platform() ", sysconfig.get_platform())
print("platform.machine() ", platform.machine())
print("platform.architecture() ", platform.architecture())
答案 14 :(得分:7)
Windows 8上有趣的结果:
>>> import os
>>> os.name
'nt'
>>> import platform
>>> platform.system()
'Windows'
>>> platform.release()
'post2008Server'
修改:这是bug
答案 15 :(得分:7)
注意您是否在使用Cygwin的Windows上os.name
为posix
。
>>> import os, platform
>>> print os.name
posix
>>> print platform.system()
CYGWIN_NT-6.3-WOW
答案 16 :(得分:6)
我知道这是一个古老的问题,但我相信我的回答可能对某些正在寻找一种简单易懂的python方式在其代码中检测OS的人有所帮助。在python3.7上测试
from sys import platform
class UnsupportedPlatform(Exception):
pass
if "linux" in platform:
print("linux")
elif "darwin" in platform:
print("mac")
elif "win" in platform:
print("windows")
else:
raise UnsupportedPlatform
答案 17 :(得分:5)
试试这个:
import os
os.uname()
你可以做到:
info=os.uname()
info[0]
info[1]
答案 18 :(得分:5)
如果你没有寻找内核版本等,但是寻找linux发行版你可能想要使用以下内容
在python2.6 +
中>>> import platform
>>> print platform.linux_distribution()
('CentOS Linux', '6.0', 'Final')
>>> print platform.linux_distribution()[0]
CentOS Linux
>>> print platform.linux_distribution()[1]
6.0
在python2.4中
>>> import platform
>>> print platform.dist()
('centos', '6.0', 'Final')
>>> print platform.dist()[0]
centos
>>> print platform.dist()[1]
6.0
显然,这只有在linux上运行时才有效。如果您希望跨平台拥有更多通用脚本,可以将其与其他答案中给出的代码示例混合使用。
答案 19 :(得分:5)
以同样的方式......
import platform
is_windows=(platform.system().lower().find("win") > -1)
if(is_windows): lv_dll=LV_dll("my_so_dll.dll")
else: lv_dll=LV_dll("./my_so_dll.so")
答案 20 :(得分:4)
您也可以只使用平台模块而不导入os模块来获取所有信息。
>>> import platform
>>> platform.os.name
'posix'
>>> platform.uname()
('Darwin', 'mainframe.local', '15.3.0', 'Darwin Kernel Version 15.3.0: Thu Dec 10 18:40:58 PST 2015; root:xnu-3248.30.4~1/RELEASE_X86_64', 'x86_64', 'i386')
使用以下行可以实现用于报告目的的漂亮而整洁的布局:
for i in zip(['system','node','release','version','machine','processor'],platform.uname()):print i[0],':',i[1]
这给出了这个输出:
system : Darwin
node : mainframe.local
release : 15.3.0
version : Darwin Kernel Version 15.3.0: Thu Dec 10 18:40:58 PST 2015; root:xnu-3248.30.4~1/RELEASE_X86_64
machine : x86_64
processor : i386
通常缺少的是操作系统版本但你应该知道你是在运行windows,linux还是mac平台独立的方式是使用这个测试:
In []: for i in [platform.linux_distribution(),platform.mac_ver(),platform.win32_ver()]:
....: if i[0]:
....: print 'Version: ',i[0]
答案 21 :(得分:4)
使用模块平台检查可用的测试并为您的系统打印答案:
import platform
print dir(platform)
for x in dir(platform):
if x[0].isalnum():
try:
result = getattr(platform, x)()
print "platform."+x+": "+result
except TypeError:
continue
答案 22 :(得分:3)
返回系统/ OS名称,例如“ Linux”,“ Darwin”,“ Java”,“ Windows”。如果无法确定该值,则返回一个空字符串。
import platform
system = platform.system().lower()
is_windows = system == 'windows'
is_linux = system == 'linux'
is_mac = system == 'darwin'
答案 23 :(得分:2)
如果您正在运行macOS X并运行platform.system()
,那么您将获得darwin
因为macOS X是基于Apple的Darwin OS构建的。 Darwin是macOS X的核心,实际上是没有GUI的macOS X.
答案 24 :(得分:2)
此解决方案适用于python
和jython
。
模块 os_identify.py :
import platform
import os
# This module contains functions to determine the basic type of
# OS we are running on.
# Contrary to the functions in the `os` and `platform` modules,
# these allow to identify the actual basic OS,
# no matter whether running on the `python` or `jython` interpreter.
def is_linux():
try:
platform.linux_distribution()
return True
except:
return False
def is_windows():
try:
platform.win32_ver()
return True
except:
return False
def is_mac():
try:
platform.mac_ver()
return True
except:
return False
def name():
if is_linux():
return "Linux"
elif is_windows():
return "Windows"
elif is_mac():
return "Mac"
else:
return "<unknown>"
像这样使用:
import os_identify
print "My OS: " + os_identify.name()
答案 25 :(得分:2)
import sys
import platform
# return a platform identifier
print(sys.platform)
# return system/os name
print(platform.system())
# print system info
# similar to 'uname' command in unix
print(platform.uname())
答案 26 :(得分:1)
使用import os
和os.name
关键字。
答案 27 :(得分:1)
像下面这样的简单Enum实现如何?不需要外部库!
import platform
from enum import Enum
class OS(Enum):
def checkPlatform(osName):
return osName.lower()== platform.system().lower()
MAC = checkPlatform("darwin")
LINUX = checkPlatform("linux")
WINDOWS = checkPlatform("windows") #I haven't test this one
只需使用枚举值即可访问
if OS.LINUX.value:
print("Cool it is Linux")
P.S是python3
答案 28 :(得分:1)
您可以查看 pyOSinfo
中的代码,该代码是 pip-date 软件包的一部分,以获取最相关的操作系统信息,如您的Python发行版。
人们要检查其操作系统的最常见原因之一是终端兼容性以及某些系统命令是否可用。不幸的是,此检查的成功在某种程度上取决于您的python安装和操作系统。例如, uname
在大多数Windows python软件包中不可用。上面的python程序将向您显示os, sys, platform, site
已提供的最常用的内置函数的输出。
因此,仅获取基本代码的最佳方法是以那个为例。 (我想我可以将其粘贴到此处,但是从政治角度上讲这不是正确的。)
答案 29 :(得分:0)
我来晚了,但是,以防万一有人需要它,我可以使用此功能对代码进行调整,使其可以在Windows,Linux和MacO上运行:
import sys
def get_os(osoptions={'linux':'linux','Windows':'win','macos':'darwin'}):
'''
get OS to allow code specifics
'''
opsys = [k for k in osoptions.keys() if sys.platform.lower().find(osoptions[k].lower()) != -1]
try:
return opsys[0]
except:
return 'unknown_OS'