mirror of
https://github.com/danbulant/deno_install
synced 2026-05-22 13:49:03 +00:00
No description
| .appveyor.yml | ||
| .travis.yml | ||
| install.ps1 | ||
| install.sh | ||
| install_test.ps1 | ||
| install_test.sh | ||
| README.md | ||
deno_install
One-line commands to install Deno on your system.
| Linux & Mac | Windows |
|---|---|
Install Latest Version
With Shell:
curl -fsSL https://deno.land/x/install/install.sh | sh
With PowerShell:
iwr https://deno.land/x/install/install.ps1 -useb | iex
Install Specific Version
With Shell:
curl -fsSL https://deno.land/x/install/install.sh | sh -s v0.2.10
With PowerShell:
iwr https://deno.land/x/install/install.ps1 -useb -outf install.ps1; .\install.ps1 v0.2.10
Install via Package Manager
With Scoop:
scoop install deno
With Homebrew:
brew install deno
Compatibility
- The Shell installer can be used on Windows via the Windows Subsystem for Linux.
- The PowerShell installer can be used on Linux and Mac thanks to PowerShell Core.
Known Issues
Running scripts is disabled
PS C:\> iwr https://deno.land/x/install/install.ps1 -useb -outf install.ps1; .\install.ps1 v0.2.10
.\install.ps1 : File C:\install.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:71
+ ... /x/install/install.ps1 -useb -outf install.ps1; .\install.ps1 v0.2.10
+ ~~~~~~~~~~~~~
+ CategoryInfo : SecurityError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : UnauthorizedAccess
When does this issue occur?
If your systems' ExecutionPolicy is Undefined or Restricted.
How can this issue be fixed?
Allow scripts that are downloaded from the internet to be executed by setting the execution policy to RemoteSigned:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force