One-line commands to install Deno on your system.
With Shell:
curl -fsSL https://deno.land/install.sh | sh
With PowerShell:
irm https://deno.land/install.ps1 | iex
With Shell:
curl -fsSL https://deno.land/install.sh | sh -s v1.0.0
With PowerShell:
$v="1.0.0"; irm https://deno.land/install.ps1 | iex
With Scoop:
scoop install deno
With Homebrew:
brew install deno
With Macports:
sudo port install deno
With Chocolatey:
choco install deno
With Snap:
sudo snap install deno
With Pacman:
pacman -S deno
With Zypper:
zypper install deno
Build and install from source using Cargo:
cargo install deno
asdf plugin add deno
# Get latest version of deno available
DENO_LATEST=$(asdf latest deno)
asdf install deno $DENO_LATEST
# Activate globally with:
asdf global deno $DENO_LATEST
# Activate locally in the current folder with:
asdf local deno $DENO_LATEST
#======================================================
# If you want to install specific version of deno then use that version instead
# of DENO_LATEST variable example
asdf install deno 1.0.0
# Activate globally with:
asdf global deno 1.0.0
# Activate locally in the current folder with:
asdf local deno 1.0.0
With Scoop:
# Install a specific version of deno:
scoop install [email protected]
# Switch to v1.0.0
scoop reset [email protected]
# Switch to the latest version
scoop reset deno
-
DENO_INSTALL
- The directory in which to install Deno. This defaults to$HOME/.deno
. The executable is placed in$DENO_INSTALL/bin
. One application of this is a system-wide installation:With Shell (
/usr/local
):curl -fsSL https://deno.land/install.sh | sudo DENO_INSTALL=/usr/local sh
With PowerShell (
C:\Program Files\deno
):# Run as administrator: $env:DENO_INSTALL = "C:\Program Files\deno" irm https://deno.land/install.ps1 | iex
- The Shell installer can be used on Windows with Windows Subsystem for Linux, MSYS or equivalent set of tools.
The program unzip
is a requirement for the Shell installer.
$ curl -fsSL https://deno.land/install.sh | sh
Error: unzip is required to install Deno (see: https://github.com/denoland/deno_install#unzip-is-required).
When does this issue occur?
During the install.sh
process, unzip
is used to extract the zip archive.
How can this issue be fixed?
You can install unzip via brew install unzip
on MacOS or apt-get install unzip -y
on Linux.