Check if your Mac is 64 bit Compatible via Command Line

Here’s me using the command on my MacBook which does not have a 64 bit processor:
$ sysctl hw |grep 64bit
hw.cpu64bit_capable: 0

on my friends newer MacBook Pro his results were:
$ sysctl hw |grep 64bit
hw.cpu64bit_capable: 1

meaning it is a 64 bit processor.

Comments are closed.