This page shows you how to install Minikube, a tool that runs a single-node Kubernetes cluster in a virtual machine on your personal computer.
To check if virtualization is supported on Linux, run the following command and verify that the output is non-empty:
grep -E --color 'vmx|svm' /proc/cpuinfo
To check if virtualization is supported on macOS, run the following command on your terminal.
sysctl -a | grep -E --color 'machdep.cpu.features|VMX'
If you see VMX
in the output (should be colored), the VT-x feature is enabled in your machine.
To check if virtualization is supported on Windows 8 and above, run the following command on your Windows terminal or command prompt.
systeminfo
If you see the following output, virtualization is supported on Windows.
Hyper-V Requirements: VM Monitor Mode Extensions: Yes
Virtualization Enabled In Firmware: Yes
Second Level Address Translation: Yes
Data Execution Prevention Available: Yes
If you see the following output, your system already has a Hypervisor installed and you can skip the next step.
Hyper-V Requirements: A hypervisor has been detected. Features required for Hyper-V will not be displayed.
Make sure you have kubectl installed. You can install kubectl according to the instructions in Install and Set Up kubectl.
If you do not already have a hypervisor installed, install one of these now:
• KVM, which also uses QEMU
Note: Minikube also supports a--vm-driver=none
option that runs the Kubernetes components on the host and not in a VM. Using this driver requires Docker and a Linux environment but not a hypervisor. It is recommended to use the apt installation of docker from (Docker, when using the none driver. The snap installation of docker does not work with minikube.
There are experimental packages for Minikube available; you can find Linux (AMD64) packages from Minikube’s releases page on GitHub.
Use your Linux’s distribution’s package tool to install a suitable package.
If you’re not installing via a package, you can download a stand-alone binary and use that.
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& chmod +x minikube
Here’s an easy way to add the Minikube executable to your path:
sudo install minikube /usr/local/bin
Make sure you have kubectl installed. You can install kubectl according to the instructions in Install and Set Up kubectl.
If you do not already have a hypervisor installed, install one of these now:
• HyperKit
The easiest way to install Minikube on macOS is using Homebrew:
brew cask install minikube
You can also install it on macOS by downloading a stand-alone binary:
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-amd64 \
&& chmod +x minikube
Here’s an easy way to add the Minikube executable to your path:
sudo mv minikube /usr/local/bin
Make sure you have kubectl installed. You can install kubectl according to the instructions in Install and Set Up kubectl.
If you do not already have a hypervisor installed, install one of these now:
• Hyper-V
Note: Hyper-V can run on three versions of Windows 10: Windows 10 Enterprise, Windows 10 Professional, and Windows 10 Education.
The easiest way to install Minikube on Windows is using Chocolatey (run as an administrator):
choco install minikube
After Minikube has finished installing, close the current CLI session and restart. Minikube should have been added to your path automatically.
To install Minikube manually on Windows using Windows Installer, download minikube-installer.exe
and execute the installer.
To install Minikube manually on Windows, download minikube-windows-amd64
, rename it to minikube.exe
, and add it to your path.
If you have previously installed minikube, and run:
minikube start
And this command returns an error:
machine does not exist
You need to clear minikube’s local state:
minikube delete
Was this page helpful?
Thanks for the feedback. If you have a specific, answerable question about how to use Kubernetes, ask it on Stack Overflow. Open an issue in the GitHub repo if you want to report a problem or suggest an improvement.