Skip to content

Instantly share code, notes, and snippets.

@amnuts
Created December 8, 2021 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amnuts/d398e96c6fbd8a96b30ae563f3908169 to your computer and use it in GitHub Desktop.
Save amnuts/d398e96c6fbd8a96b30ae563f3908169 to your computer and use it in GitHub Desktop.
import platform
import subprocess
def isMac() -> bool:
return platform.system() == 'Darwin'
def getMacProcessor() -> str:
return subprocess.check_output(['sysctl', '-n', 'machdep.cpu.brand_string']).decode('utf-8').rstrip()
def isM1() -> bool:
return getMacProcessor().lower() == 'apple m1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment