From 5b605ff77b0034bc1fd7fd2c3a80a8c05a87211b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ian=20L=C3=A9tourneau?= Date: Mon, 17 Apr 2023 08:10:13 +0200 Subject: [PATCH] installation: document install instruction using asdf (#615) --- getting_started/installation.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/getting_started/installation.md b/getting_started/installation.md index 9c6cda3c..a4577a56 100644 --- a/getting_started/installation.md +++ b/getting_started/installation.md @@ -53,6 +53,19 @@ Using [Nix](https://nixos.org/download.html) (macOS and Linux): nix-shell -p deno ``` +Using [asdf](https://asdf-vm.com/) (macOS and Linux): + +```shell +asdf plugin-add deno https://github.com/asdf-community/asdf-deno.git +asdf install deno latest + +# To install globally +asdf global deno latest + +# To install locally (current project only) +asdf local deno latest +``` + Build and install from source using [Cargo](https://crates.io/crates/deno): ```shell