본문 바로가기
Python/Python FAQ

Python 파이썬이 실행 중인 운영 체제를 식별하는 방법, How to identify which OS Python is running on

by 베타코드 2023. 6. 10.
반응형

질문


What do I need to look at to see whether I'm on Windows or Unix, etc.?

나는 윈도우 또는 유닉스 등에서 작동하는지 어떻게 확인해야 하나요?


답변


>>> import os

>>> os.name
'posix'

>>> import platform

>>> platform.system()
'Linux'

>>> platform.release()
'2.6.22-15-generic'

platform.system()의 출력 결과는 다음과 같습니다:

  • Linux: Linux
  • Mac: Darwin
  • Windows: Windows

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

반응형

댓글