How to check the processor architecture on your mac
Intel based processor:
- Using the About This Mac window
- Click the Apple menu in the top-left corner of your screen.
- Select About This Mac.
- Click the System Report button.
- On the Hardware tab, look for the Processor Name.
Mac-processor |
If you have an M1 or M2 Mac, the Processor Name will not be listed; instead, you will see a Model Number and Chip.
M1 or M2 processor:
- Using the Terminal
- Open the Terminal.
- Type the following command and press Enter:
uname -p
This will display the processor architecture of your Mac.
For example, if your Mac has an Intel processor, the output of the command will be x86_64
. If your Mac has an M1 or M2 processor, the output of the command will be arm
.
No comments