DEV Community

Manthan Ankolekar
Manthan Ankolekar

Posted on

Deno Install/Upgrade steps

Installation :

Using Shell (macOS and Linux):

curl -fsSL https://deno.land/x/install/install.sh | sh
Enter fullscreen mode Exit fullscreen mode

Using PowerShell (Windows):

irm https://deno.land/install.ps1 | iex
Enter fullscreen mode Exit fullscreen mode

Using Scoop (Windows):

scoop install deno
Enter fullscreen mode Exit fullscreen mode

Using Chocolatey (Windows):

choco install deno
Enter fullscreen mode Exit fullscreen mode

Using Homebrew (macOS):

brew install deno
Enter fullscreen mode Exit fullscreen mode

Using Nix (macOS and Linux):

nix-shell -p deno
Enter fullscreen mode Exit fullscreen mode

Build and install from source using Cargo:

cargo install deno --locked
Enter fullscreen mode Exit fullscreen mode

To check version :

deno --version
Enter fullscreen mode Exit fullscreen mode

To Update :

deno upgrage

#For Specific Version
deno upgrade --version 1.0.1
Enter fullscreen mode Exit fullscreen mode

Reference: Deno Installation Official

Top comments (0)