Installing Deno
Get Deno Release Binary
curl -L https://deno.land/x/install/install.py | python
export PATH=$HOME/.deno/bin:$PATHiex (iwr https://deno.land/x/install/install.ps1)Compile Deno From Source
# Fetch deps.
git clone --recurse-submodules https://github.com/denoland/deno.git
cd deno
# Setup and download important third party tools
./tools/setup.py
# Build.
./tools/build.pyLast updated
Was this helpful?