diff options
author | Ry Dahl <ry@tinyclouds.org> | 2019-11-07 00:05:37 -0500 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-11-06 21:05:37 -0800 |
commit | f466ef97061ffed5baf1612a646accb2cda4b772 (patch) | |
tree | ea25c958aa5934039c70769a61c67e1f15e6e44a /std/manual.md | |
parent | ccc9f1ae5ea3d7ec858ff2eeab490aafaa089d36 (diff) |
manual: add chocolatey install instructions (#3280)
Diffstat (limited to 'std/manual.md')
-rw-r--r-- | std/manual.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/std/manual.md b/std/manual.md index 0eb4fd64b..0a0771f24 100644 --- a/std/manual.md +++ b/std/manual.md @@ -129,13 +129,19 @@ Using [Scoop](https://scoop.sh/) (windows): scoop install deno ``` -Using [Homebrew](https://brew.sh/) (mac): +Using [Chocolatey](https://chocolatey.org/packages/deno) (windows): + +```shell +choco install deno +``` + +Using [Homebrew](https://formulae.brew.sh/formula/deno) (mac): ```shell brew install deno ``` -To install from source: +Using [Cargo](https://crates.io/crates/deno_cli): ```shell cargo install deno_cli |