From 720a32d7d5b9adf3b3f39a29808e9a146a5e1181 Mon Sep 17 00:00:00 2001 From: Andrea Spadaccini Date: Sun, 13 Dec 2020 16:17:00 +0000 Subject: [PATCH] Add mention of the Windows Package Manager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the installation guide to mention winget, the Windows Package Manager. Minikube is in the repository, and the command I listed works correctly: andre@IRIDIUM-MMXX  C:\Windows\System32  [16:11] ❯ winget search minikube Name Id Version ------------------------------------ minikube Kubernetes.minikube 1.15.1 andre@IRIDIUM-MMXX  C:\Windows\System32  [16:12] ❯ winget install minikube Found minikube [Kubernetes.minikube] This application is licensed to you by its owner. Microsoft is not responsible for, nor does it grant any licences to, third-party packages. Downloading https://storage.googleapis.com/minikube/releases/latest/minikube-installer.exe ██████████████████████████████ 23.7 MB / 23.7 MB Successfully verified installer hash Starting package install... Successfully installed --- site/content/en/docs/start/_index.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/site/content/en/docs/start/_index.md b/site/content/en/docs/start/_index.md index 15b7b91882..85f2497263 100644 --- a/site/content/en/docs/start/_index.md +++ b/site/content/en/docs/start/_index.md @@ -98,12 +98,22 @@ sudo install minikube-darwin-amd64 /usr/local/bin/minikube {{% /mactab %}} {{% windowstab %}} -If the [Chocolatey Package Manager](https://chocolatey.org/) is installed, use it to install minikube: +### Windows Package Manager + +If the [Windows Package Manager](https://docs.microsoft.com/en-us/windows/package-manager/) is installed, use the following command to install minikube: + +```shell +winget install minikube +``` + +### Chocolatey +If the [Chocolatey Package Manager](https://chocolatey.org/) is installed, use the following command: ```shell choco install minikube ``` +### Stand-alone Windows Installer Otherwise, download and run the [Windows installer](https://storage.googleapis.com/minikube/releases/latest/minikube-installer.exe) {{% /windowstab %}}