One-line commands to install Deno on your system.
With Shell:
curl -fsSL https://deno.land/install.sh | shWith PowerShell:
irm https://deno.land/install.ps1 | iex
With Shell:
curl -fsSL https://deno.land/install.sh | sh -s v1.0.0With PowerShell:
$v="1.0.0"; irm https://deno.land/install.ps1 | iex
With winget:
winget install deno
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:
# Install the Protobuf compiler apt install -y protobuf-compiler # Linux brew install protobuf # macOS # Build and install Deno 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 deno@1.0.0 # Switch to v1.0.0 scoop reset deno@1.0.0 # 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 shWith PowerShell (
C:\Program Files\deno):# Run as administrator: $env:DENO_INSTALL = "C:\Program Files\deno" irm https://deno.land/install.ps1 | iex
As an additional layer of security, you can verify the integrity of the shell installer against the provided checksums.
curl -fLso install.sh https://deno.land/install.sh
Verify the SHA256 checksum of the installer:
curl -s https://raw.githubusercontent.com/denoland/deno_install/master/SHA256SUM | sha256sum --check --ignore-missing- The Shell installer can be used on Windows with Windows Subsystem for Linux, MSYS or equivalent set of tools.
To decompress the deno archive, one of either
unzip or
7z must be available on the target system.
$ curl -fsSL https://deno.land/install.sh | sh
Error: either unzip or 7z is required to install Deno (see: https://github.com/denoland/deno_install#either-unzip-or-7z-is-required ).When does this issue occur?
During the install.sh process, unzip or 7z is used to extract the zip
archive.
How can this issue be fixed?
You can install unzip via brew install unzip on MacOS or
sudo apt-get install unzip -y on Linux.