Skip to content

Latest commit

 

History

History
64 lines (43 loc) · 1.45 KB

README.md

File metadata and controls

64 lines (43 loc) · 1.45 KB

UIX Install

Note

One-line commands to install UIX on your system. This will install deno for UIX and UIX CLI.

Install Latest Version

With Shell:

curl -fsSL https://unyt.land/install.sh | bash

With PowerShell:

irm https://unyt.land/install.ps1 | iex

Install Specific Version

With Shell:

curl -fsSL https://unyt.land/install.sh | bash -s 1.0.0

With PowerShell:

$v="1.0.0"; irm https://unyt.land/install.ps1 | iex

Install via Package Manager

With Homebrew:

brew install deno

Environment Variables

  • 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

Compatibility