summaryrefslogtreecommitdiff
path: root/docs/getting_started/installation.md
diff options
context:
space:
mode:
authorAttila Gulyas <toraritte@gmail.com>2021-04-01 00:51:23 -0700
committerGitHub <noreply@github.com>2021-04-01 18:51:23 +1100
commit47ac654ea27e22d328921dd2283953dfd675b427 (patch)
tree2647dd24c9d7098cec3d45647beee486d5f13ae7 /docs/getting_started/installation.md
parent9e937122c216da77d6bd2db68721ab5b1855a750 (diff)
docs: add the Nix pkg manager to Installation options (#9921)
Diffstat (limited to 'docs/getting_started/installation.md')
-rw-r--r--docs/getting_started/installation.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/getting_started/installation.md b/docs/getting_started/installation.md
index f19a3102d..28f49150b 100644
--- a/docs/getting_started/installation.md
+++ b/docs/getting_started/installation.md
@@ -38,6 +38,12 @@ Using [Homebrew](https://formulae.brew.sh/formula/deno) (macOS):
brew install deno
```
+Using [Nix](https://nixos.org/download.html) (macOS and Linux):
+
+```shell
+nix-shell -p deno
+```
+
Build and install from source using [Cargo](https://crates.io/crates/deno):
```shell