The provided methods on the Kubernetes documentation don't work and brew cask
no longer seems to have the minikube formulae as of Mac OS Catalina.
Error: Cask 'minikube' is unavailable: No Cask with this name exists.
When I download it with curl
it refuses to run with the following error.
/bin/minikube: cannot execute binary file: Exec format error
How can I install minikube on Mac OS Catalina. Or do I have to rollback to Mojave?
Download and run the installer for the latest release. Add the minikube.exe binary to your PATH . Make sure to run PowerShell as Administrator. If you used a terminal (like powershell) for the installation, please close the terminal and reopen it before running minikube.
Search for the version you want to install. Click on “Assets” of that version, Download the binary suitable for your macOS architecture. Install it.
Kubernetes is available in Docker for Mac for 18.06 Stable or higher and includes a Kubernetes server and client, as well as integration with the Docker executable. The Kubernetes server runs locally within your Docker instance and it is similar to the Docker on Windows solution.
Minikube is no longer available as a cask
.
Change command
brew cask install minikube
to
brew install minikube
or use
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-amd64 \
&& sudo install minikube-darwin-amd64 /usr/local/bin/minikube
The provided methods on the Kubernetes documentation don't work and brew cask no longer seems to have the minikube formulae as of Mac OS Catalina.
Error: Cask 'minikube' is unavailable: No Cask with this name exists.
Minikube is no longer available as a cask. You can install it with brew install minikube
.
When I download it with curl it refuses to run with the following error.
/bin/minikube: cannot execute binary file: Exec format error
An Exec format error
might indicate that you're trying to execute a file that is not intended to be executed (e.g. a plain text file). Make sure the /bin/minikube
file is actually a binary (you can test with file /bin/minikube
, it should print 'Mach-O Executable')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With