diff options
author | Kid <44045911+kidonng@users.noreply.github.com> | 2021-03-15 19:46:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 12:46:08 +0100 |
commit | a3e0766e6a56ce0904e8e6e9f21d87c7f4a15be3 (patch) | |
tree | 1ca7f29a1611752df8b2d90335d1c861bbd075b7 | |
parent | c4709834b37640fd3c9d492123e6add904546573 (diff) |
docs: match install section with website (#9665)
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | docs/getting_started/installation.md | 4 |
2 files changed, 9 insertions, 3 deletions
@@ -44,10 +44,16 @@ brew install deno choco install deno ``` +[Scoop](https://scoop.sh/) (Windows): + +```powershell +scoop install deno +``` + Build and install from source using [Cargo](https://crates.io/crates/deno): ```sh -cargo install deno +cargo install deno --locked ``` See diff --git a/docs/getting_started/installation.md b/docs/getting_started/installation.md index 8d665d88b..f19a3102d 100644 --- a/docs/getting_started/installation.md +++ b/docs/getting_started/installation.md @@ -38,10 +38,10 @@ Using [Homebrew](https://formulae.brew.sh/formula/deno) (macOS): brew install deno ``` -Using [Cargo](https://crates.io/crates/deno) (Windows, macOS, Linux): +Build and install from source using [Cargo](https://crates.io/crates/deno): ```shell -cargo install deno +cargo install deno --locked ``` Deno binaries can also be installed manually, by downloading a zip file at |