https://github.com/unyt-org/uix-install
Scripts to install Deno for UIX
https://github.com/unyt-org/uix-install
deno deno-for-uix uix
Last synced: 2 months ago
JSON representation
Scripts to install Deno for UIX
- Host: GitHub
- URL: https://github.com/unyt-org/uix-install
- Owner: unyt-org
- Created: 2024-09-07T15:44:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-10-14T18:27:59.000Z (8 months ago)
- Last Synced: 2026-01-15T21:38:30.118Z (5 months ago)
- Topics: deno, deno-for-uix, uix
- Language: Shell
- Homepage: https://dl.unyt.land
- Size: 47.9 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UIX Install
> [!NOTE]
> One-line commands to install [UIX](https://github.com/unyt-org/uix) on your system.
> This will install [deno for UIX](https://github.com/unyt-org/deno) and [UIX CLI](https://github.com/unyt-org/uix).
## Install Latest Version
**With Shell:**
```sh
curl -fsSL https://unyt.land/install.sh | bash
```
**With PowerShell:**
```powershell
irm https://unyt.land/install.ps1 | iex
```
## Install Specific Version
**With Shell:**
```sh
curl -fsSL https://unyt.land/install.sh | bash -s 2.0.0
```
**With PowerShell:**
```powershell
$v="1.0.0"; irm https://unyt.land/install.ps1 | iex
```
## 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`):**
```sh
curl -fsSL https://unyt.land/install.sh | sudo UIX_INSTALL=/usr/local bash
```
**With PowerShell (`C:\Program Files\uix`):**
```powershell
# Run as administrator:
$env:UIX_INSTALL = "C:\Program Files\uix"
irm https://unyt.land/install.ps1 | iex
```
## Compatibility
- The Shell installer can be used on Windows with [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/about), [MSYS](https://www.msys2.org) or equivalent set of tools.