From e600471ee20bad2c1431cc585aa4cb8297932c98 Mon Sep 17 00:00:00 2001 From: Nuno do Carmo Date: Fri, 19 Jan 2024 17:39:27 +0100 Subject: [PATCH] Updates Windows install with Winget instructions Incus has now a [winget package](https://github.com/microsoft/winget-pkgs/pull/131752) available and the Windows installation docs have been updated with the instructions to install Incus with winget. ps: I tried to used nested tabs, but the result was not good, so that's why the instructions are stacked. ps2: while running the `make doc` from Ubuntu on WSL (what else?), I came across a package missing: `python3.10-venv`. Nothing critical, more a FYI. --- doc/installing.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/doc/installing.md b/doc/installing.md index e9cf098faa0..7d0f8b0389c 100644 --- a/doc/installing.md +++ b/doc/installing.md @@ -169,14 +169,20 @@ To install the feature branch of Incus, run: ```{group-tab} Windows -The Incus client on Windows is provided as a [Chocolatey](https://community.chocolatey.org/packages/incus) package. -To install it: +The Incus client on Windows is provided as a [Chocolatey](https://community.chocolatey.org/packages/incus) and [Winget](https://github.com/microsoft/winget-cli) package. +To install it using Chocolatey or Winget, follow the instructions below: +**Chocolatey** 1. Install Chocolatey by following the [installation instructions](https://docs.chocolatey.org/en-us/choco/setup). 1. Install the Incus client: choco install incus -``` + +**Winget** +1. Install Winget by following the [installation instructions](https://learn.microsoft.com/en-us/windows/package-manager/winget/#install-winget) +1. Install the Incus client: + + winget install LinuxContainers.Incus ````