mirror of
https://github.com/danbulant/deno_install
synced 2026-05-19 20:29:06 +00:00
No description
| .appveyor.yml | ||
| .travis.yml | ||
| install.ps1 | ||
| install.py | ||
| install.sh | ||
| install_test.py | ||
| install_test.sh | ||
| README.md | ||
Deno Binary Installer
| Linux | Windows |
|---|---|
Downloads the latest Deno binary into $HOME/.deno/bin.
Install with Shell:
curl -L https://deno.land/x/install/install.sh | sh
Install with Python:
curl -L https://deno.land/x/install/install.py | python
Install with PowerShell:
iex (iwr https://deno.land/x/install/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.
Install other versions
If you need to install specific version of deno, use the following commands:
Install with Shell:
curl -L https://deno.land/x/install/install.sh | sh -s v0.2.0
Install with Python:
curl -L https://deno.land/x/install/install.py | python - v0.2.0
Install with PowerShell:
iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 v0.2.0