← homeComputers and technologies (Комп'ютери та технології)

Fixing minikube "You are trying to run the amd64 binary on an M1 system."

On M1 Mac, when executing minikube config set cpus 4, I encountered the following error: | You are trying to run the amd64 binary on an M1 system. │ │ Please consider running the darwin/arm64 binary instead. │ │ Downl...

This content has been automatically translated from Ukrainian.
On M1 Mac, when executing minikube config set cpus 4, I encountered the following error:
|    You are trying to run the amd64 binary on an M1 system.                                               │
│    Please consider running the darwin/arm64 binary instead.                                              │
│    Download at https://github.com/kubernetes/minikube/releases/download/v1.35.0/minikube-darwin-arm64    │                                                                                                     
To fix this, we need to download the library:
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-arm64
And install:
sudo install minikube-darwin-arm64 /usr/local/bin/minikube

🔥 More posts

All posts
What is XOR and how does it work?
Programming (Програмування)Mar 21, '25 17:05

What is XOR and how does it work?

XOR (exclusive OR) is a simple yet useful logical operation used in programming, cryptography, an...