diff options
author | Andy Hayden <andyhayden1@gmail.com> | 2019-05-24 12:22:16 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-24 22:22:16 +0300 |
commit | 62c377fc19ac49138da5c3b3ee3b9d3854a44474 (patch) | |
tree | 8808158cadac47959668b7526615212ce9fb855d | |
parent | 86684799c4b98a61c5845a7ef1d2e743b0e4851e (diff) |
Add brew install deno to manual (#2407)
-rw-r--r-- | website/manual.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/website/manual.md b/website/manual.md index f3b902b58..ceb3a51b8 100644 --- a/website/manual.md +++ b/website/manual.md @@ -106,10 +106,16 @@ iwr https://deno.land/x/install/install.ps1 | iex Using [Scoop](https://scoop.sh/) (windows): -``` +```shellsession scoop install deno ``` +Using [Homebrew](https://brew.sh/) (mac): + +```shellsession +brew install deno +``` + Deno can also be installed manually, by downloading a tarball or zip file at [github.com/denoland/deno/releases](https://github.com/denoland/deno/releases). These packages contain just a single executable file. You will have to set the |