From 50613c2df5bc1d4bfd2c5ceb5a7104765e6da772 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Sat, 26 Jan 2019 18:26:54 +0300 Subject: Add PowerShell install guide to the website (#1590) --- website/index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'website/index.html') diff --git a/website/index.html b/website/index.html index fb47d53e3..0720f639f 100644 --- a/website/index.html +++ b/website/index.html @@ -47,11 +47,15 @@

Getting started

Install Deno into ~/.deno/bin - +

With Shell

 curl -L https://deno.land/x/install/install.sh | sh
 export PATH=$HOME/.deno/bin:$PATH
 
+

With PowerShell

+
+iex (iwr https://deno.land/x/install/install.ps1)
+
Try a Deno program. Install by bash alias. This one serves a local directory in HTTP. -- cgit v1.2.3