Note
One-line commands to install UIX on your system. This will install deno for UIX and UIX CLI.
With Shell:
curl -fsSL https://unyt.land/install.sh | bash
With PowerShell:
irm https://unyt.land/install.ps1 | iex
With Shell:
curl -fsSL https://unyt.land/install.sh | bash -s 2.0.0
With PowerShell:
$v="1.0.0"; irm https://unyt.land/install.ps1 | iex
-
UIX_INSTALL
- The directory in which to install Deno. This defaults to$HOME/.uix
. The executable is placed in$UIX_INSTALL/bin
. One application of this is a system-wide installation:With Shell (
/usr/local
):curl -fsSL https://unyt.land/install.sh | sudo UIX_INSTALL=/usr/local bash
With PowerShell (
C:\Program Files\uix
):# Run as administrator: $env:UIX_INSTALL = "C:\Program Files\uix" irm https://unyt.land/install.ps1 | iex
- The Shell installer can be used on Windows with Windows Subsystem for Linux, MSYS or equivalent set of tools.