0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

Use shell installer in docs (#1574)

This commit is contained in:
Dmitry Sharshakov 2019-01-25 21:40:56 +03:00 committed by Ryan Dahl
parent d0dc4deaad
commit 34dbd31593
2 changed files with 5 additions and 4 deletions

View file

@ -16,10 +16,10 @@ has no external dependencies.
[deno_install](https://github.com/denoland/deno_install) provides convenience
scripts to download and install the binary.
Using Python:
Using Shell:
```
curl -L https://deno.land/x/install/install.py | python
curl -L https://deno.land/x/install/install.sh | sh
```
Or using PowerShell:

View file

@ -1,4 +1,4 @@
<!-- Copyright 2018 the Deno authors. All rights reserved. MIT license. -->
<!-- Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -->
<!DOCTYPE html>
<html>
<head>
@ -47,8 +47,9 @@
<h2>Getting started</h2>
<p>Install Deno into ~/.deno/bin
<pre>
curl -L https://deno.land/x/install/install.py | python
curl -L https://deno.land/x/install/install.sh | sh
export PATH=$HOME/.deno/bin:$PATH
</pre>