mirror of
https://github.com/danbulant/deno_install
synced 2026-06-19 22:41:55 +00:00
21 lines
863 B
Markdown
21 lines
863 B
Markdown
# Deno Binary Installer
|
|
|
|
| **Linux** | **Windows** |
|
|
|:---------------:|:-----------:|
|
|
| [](https://travis-ci.com/denoland/deno_install) | [](https://ci.appveyor.com/project/deno/deno-install) |
|
|
|
|
Downloads the latest Deno binary into `$HOME/.deno/bin`.
|
|
|
|
**Install with Python:**
|
|
|
|
```
|
|
curl -sSf https://raw.githubusercontent.com/denoland/deno_install/master/install.py | python
|
|
```
|
|
|
|
**Install with PowerShell:**
|
|
|
|
```powershell
|
|
iex (iwr https://raw.githubusercontent.com/denoland/deno_install/master/install.ps1)
|
|
```
|
|
|
|
_Note: Depending on your security settings, you may have to run `Set-ExecutionPolicy RemoteSigned -Scope CurrentUser` first to allow downloaded scripts to be executed._
|