Add Install via Package Manager section (#46)

This commit is contained in:
Mark Tiedemann 2019-02-19 00:36:37 +01:00 committed by Ryan Dahl
parent 9c7dd18d8d
commit 230bbd6636

View file

@ -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).