Homebrew (brew install minikube
) is installing amd64 'minikube' on Macbook Air with M1. while running any minikube command, it prints following message:
╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ │
│ 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.25.2/minikube-darwin-arm64 │
│ │
╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯
minikube version: v1.25.2
I think when I installed Homebrew, it wasn't ported to M1, but later I upgraded it, uninstalled and re-installed it, but still same problem.
Any Idea how can I install correct version with Homebrew?
I know, I can install specific arm64 version with sudo install
, but I prefer to manage packages with Homebrew.
brew bundle dump
and thenbrew bundle
in the same directory. – Konstance