Search⌘ K
AI Features

Install Deno

Explore the step-by-step process for installing Deno on Linux, macOS, and Windows. Learn the commands to set up Deno in your environment and verify the installation to ensure everything is ready for building your applications.

Using Linux or macOS

If you’re using a Linux or MacOS, run the following command in your shell:

Shell
curl -fsSL https://deno.land/x/install/install.sh | sh

Using Windows

Alternatively, if you’re using a Windows machine, run the following in your PowerShell:

Shell
iwr https://deno.land/x/install/install.ps1 -useb | iex

Test installation

Once you’ve done one of the above operations, run the following command to check which version of Deno has been installed:

Shell
deno --version
Terminal 1
Terminal
Loading...