mirror of
https://github.com/danbulant/deno_install
synced 2026-07-04 18:50:39 +00:00
Add Install via Package Manager section (#46)
This commit is contained in:
parent
9c7dd18d8d
commit
230bbd6636
1 changed files with 16 additions and 2 deletions
18
README.md
18
README.md
|
|
@ -11,7 +11,7 @@
|
||||||
**With Shell:**
|
**With Shell:**
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
curl -L https://deno.land/x/install/install.sh | sh
|
curl -fsSL https://deno.land/x/install/install.sh | sh
|
||||||
```
|
```
|
||||||
|
|
||||||
**With PowerShell:**
|
**With PowerShell:**
|
||||||
|
|
@ -25,7 +25,7 @@ iwr https://deno.land/x/install/install.ps1 | iex
|
||||||
**With Shell:**
|
**With Shell:**
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
curl -L https://deno.land/x/install/install.sh | sh -s v0.2.10
|
curl -fsSL https://deno.land/x/install/install.sh | sh -s v0.2.10
|
||||||
```
|
```
|
||||||
|
|
||||||
**With PowerShell:**
|
**With PowerShell:**
|
||||||
|
|
@ -34,6 +34,20 @@ curl -L https://deno.land/x/install/install.sh | sh -s v0.2.10
|
||||||
iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 v0.2.10
|
iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 v0.2.10
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Install via Package Manager
|
||||||
|
|
||||||
|
**With [Scoop](https://scoop.sh):**
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
scoop install deno
|
||||||
|
```
|
||||||
|
|
||||||
|
**With [Homebrew](https://brew.sh/):**
|
||||||
|
|
||||||
|
_Cooming soon!_
|
||||||
|
|
||||||
|
See [denoland/deno#1486](https://github.com/denoland/deno/issues/1486).
|
||||||
|
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
- The Shell installer can be used on Windows via the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/about).
|
- The Shell installer can be used on Windows via the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/about).
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue