From 230bbd6636726a33defd0caeaeb9a20ce7d1e1e9 Mon Sep 17 00:00:00 2001 From: Mark Tiedemann Date: Tue, 19 Feb 2019 00:36:37 +0100 Subject: [PATCH] Add Install via Package Manager section (#46) --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9fccbfa..0cf507a 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ **With Shell:** ```sh -curl -L https://deno.land/x/install/install.sh | sh +curl -fsSL https://deno.land/x/install/install.sh | sh ``` **With PowerShell:** @@ -25,7 +25,7 @@ iwr https://deno.land/x/install/install.ps1 | iex **With Shell:** ```sh -curl -L https://deno.land/x/install/install.sh | sh -s v0.2.10 +curl -fsSL https://deno.land/x/install/install.sh | sh -s v0.2.10 ``` **With PowerShell:** @@ -34,6 +34,20 @@ curl -L https://deno.land/x/install/install.sh | sh -s v0.2.10 iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 v0.2.10 ``` +## Install via Package Manager + +**With [Scoop](https://scoop.sh):** + +```powershell +scoop install deno +``` + +**With [Homebrew](https://brew.sh/):** + +_Cooming soon!_ + +See [denoland/deno#1486](https://github.com/denoland/deno/issues/1486). + ## Compatibility - The Shell installer can be used on Windows via the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/about).