No description
Find a file
2019-01-15 19:43:12 -05:00
.appveyor.yml Add appveyor test for powershell based installer 2018-09-12 13:53:07 -07:00
.travis.yml Clean up install.sh and bump to v0.2.7 (#27) 2019-01-15 19:43:12 -05:00
install.ps1 Improvements to PowerShell install script (#22) 2019-01-06 17:40:53 -05:00
install.py feat: show progress indicator 2018-11-18 08:32:28 -08:00
install.sh Clean up install.sh and bump to v0.2.7 (#27) 2019-01-15 19:43:12 -05:00
install_test.py Install specific version of deno (#11) 2018-11-17 13:44:08 +08:00
install_test.sh Clean up install.sh and bump to v0.2.7 (#27) 2019-01-15 19:43:12 -05:00
README.md Add install.sh (#23) 2019-01-15 18:38:22 -05:00

Deno Binary Installer

Linux Windows
Build Status Build status

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