Skip to content

Instantly share code, notes, and snippets.

@ahmadrosid
Last active July 5, 2020 11:05
Show Gist options
  • Save ahmadrosid/4e25623cd1dd005b7c7f9566972d9ff1 to your computer and use it in GitHub Desktop.
Save ahmadrosid/4e25623cd1dd005b7c7f9566972d9ff1 to your computer and use it in GitHub Desktop.

Official docs: https://kubernetes.io/docs/tasks/tools/install-minikube

Install on linux :

curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube
sudo install minikube /usr/local/bin

# Using pacman
sudo pacman -S minikube

Install on macos :

brew cask install minikube
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-amd64 && chmod +x minikube
sudo mv minikube /usr/local/bin

Install on windows :

choco install minikube
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment