No description
Find a file
2019-02-15 18:51:30 -05:00
.appveyor.yml Refactor CI (#39) 2019-02-04 10:38:45 -05:00
.travis.yml Refactor CI (#39) 2019-02-04 10:38:45 -05:00
install.ps1 Cleanup (#37) 2019-02-01 12:22:09 -05:00
install.py Deprecate Python installer (#42) 2019-02-15 18:51:30 -05:00
install.sh Cleanup (#37) 2019-02-01 12:22:09 -05:00
install_test.ps1 Cleanup (#37) 2019-02-01 12:22:09 -05:00
install_test.py Install specific version of deno (#11) 2018-11-17 13:44:08 +08:00
install_test.sh Cleanup (#37) 2019-02-01 12:22:09 -05:00
README.md Deprecate Python installer (#42) 2019-02-15 18:51:30 -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 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 PowerShell:

iwr https://deno.land/x/install/install.ps1 -out install.ps1; .\install.ps1 v0.2.0

Note: Depending on your security settings, you may have to run Set-ExecutionPolicy RemoteSigned -Scope CurrentUser first to allow downloaded scripts to be executed.