diff --git a/runtime/manual/getting_started/installation.md b/runtime/manual/getting_started/installation.md index a4577a565..d2462387b 100644 --- a/runtime/manual/getting_started/installation.md +++ b/runtime/manual/getting_started/installation.md @@ -23,6 +23,12 @@ Using PowerShell (Windows): irm https://deno.land/install.ps1 | iex ``` +Using [Winget](https://github.com/microsoft/winget-cli) (Windows): + +```shell +winget install deno +``` + Using [Scoop](https://scoop.sh/) (Windows): ```shell @@ -98,6 +104,12 @@ To update a previously installed version of Deno, you can run: deno upgrade ``` +Or using [Winget](https://github.com/microsoft/winget-cli) (Windows): + +```shell +winget upgrade deno +``` + This will fetch the latest release from [github.com/denoland/deno/releases](https://github.com/denoland/deno/releases), unzip it, and replace your current executable with it.