[python] 어떤 OS를 사용하고 있습니까?

Windows 또는 Unix 등을 사용하고 있는지 확인하려면 무엇이 필요합니까?



답변

>>> import os
>>> os.name
'posix'
>>> import platform
>>> platform.system()
'Linux'
>>> platform.release()
'2.6.22-15-generic'

출력은 platform.system()다음과 같습니다.

  • 리눅스 : Linux
  • 맥: Darwin
  • 윈도우 : Windows

참조 : platform– 플랫폼의 식별 데이터를 기본에 대한 액세스


답변

Dang-lbrandy가 나를 이길 수는 있지만 Vista의 시스템 결과를 제공 할 수는 없습니다!

>>> 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'


답변

기록에 대한 Mac 결과는 다음과 같습니다.

>>> import os
>>> os.name
'posix'
>>> import platform
>>> platform.system()
'Darwin'
>>> platform.release()
'8.11.1'


답변

파이썬을 사용하여 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


답변

sys.platform이미 sys가져 왔고 다른 모듈을 가져 오지 않으려 는 경우 에도 사용할 수 있습니다

>>> import sys
>>> sys.platform
'linux2'


답변

사용자가 읽을 수 있지만 여전히 자세한 정보를 원한다면 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: ('', ('', '', ''), '')


답변

단편

사용하십시오 platform.system(). 그것은 반환 Windows, Linux또는 Darwin(OSX 용).

긴 이야기

파이썬에서 OS를 얻는 방법에는 각각 고유 한 장단점이있는 3 가지 방법이 있습니다.

방법 1

>>> import sys
>>> sys.platform
'win32'  # could be 'linux', 'linux2, 'darwin', 'freebsd8' etc

작동 방식 ( source ) : 내부적으로 OS에서 정의한대로 OS API를 호출하여 OS 이름을 가져옵니다. 다양한 OS 별 값 은 여기 를 참조 하십시오 .

장점 : 마법이없고 레벨이 낮습니다.

단점 : OS 버전에 따라 다르므로 직접 사용하지 않는 것이 가장 좋습니다.

방법 2

>>> import os
>>> os.name
'nt'  # for Linux and Mac it prints 'posix'

작동 원리 ) : 내부적으로 파이썬에 posix 또는 nt라는 OS 관련 모듈이 있는지 확인합니다.

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’과 같은 OS 버전 별 이름을 가져온 다음 ‘Windows’또는 ‘Linux’와 같은보다 일반적인 이름으로 정규화합니다. 여러 휴리스틱을 적용하여 ‘다윈’.

프로 : Windows, OSX 및 Linux를위한 최고의 휴대용 방법.

단점 : 파이썬 사람들은 정규화 휴리스틱을 최신 상태로 유지해야합니다.

요약

  • OS가 Windows, Linux 또는 OSX인지 확인하려면 가장 안정적인 방법은 platform.system()입니다.
  • 당신이 OS 특정 통화를하려면 파이썬 모듈 내장을 통해 posix또는 nt다음 사용os.name .
  • OS 자체에서 제공 한 원시 OS 이름을 얻으려면을 사용하십시오 sys.platform.