Skip to content

Instantly share code, notes, and snippets.

@search5
Created April 30, 2024 12:22
Show Gist options
  • Save search5/8724b177d602f68a45a9c6858d88d012 to your computer and use it in GitHub Desktop.
Save search5/8724b177d602f68a45a9c6858d88d012 to your computer and use it in GitHub Desktop.
파이썬 버전 추출
# python --version 명령 실행
$pythonVersionOutput = python --version
# 버전 문자열에서 숫자 부분 추출
$pythonVersion = $pythonVersionOutput -replace 'Python ', ''
# 첫 번째와 두 번째 숫자 추출
$majorMinorVersion = $pythonVersion -replace '^(\d+)\.(\d+).*', '$1$2'
# 숫자로 변환
$PY_VER = [int]$majorMinorVersion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment