Skip to content

Download

Platform Link
Windows Download
Linux Download

Tip

  • The first time you start Ari, Windows Defender may scan the file for a few seconds before running it.
  • Chrome or Microsoft Edge may warn about the file because it is "uncommonly downloaded". Before jumping to conclusions, you can always scan the file with VirusTotal.
  • Execute chmod +x ari-linux if permission error is encountered.

Building from source

  • This section is for those want to experiment with Ari's source code.

General steps

  1. Clone Ari's repository 👪
    • git clone https://github.com/FongYoong/ari-lang.git
  2. Install the Rust toolchains (Rustc, Rustup, Cargo).
  3. Install nightly Rust with:
    • rustup toolchain install nightly
  4. Move into the cloned repository
    • cd ari-lang
  5. Configure the project to use nightly Rust:
    • rustup override set nightly
  6. Build! 🔨
    • cargo build --release

Condensed instructions

1
git clone https://github.com/FongYoong/ari-lang.git

Install Rust: 32-bit or 64-bit

3
4
5
6
rustup toolchain install nightly
cd ari-lang
rustup override set nightly
cargo build --release
1
2
3
4
5
6
7
git clone https://github.com/FongYoong/ari-lang.git
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env
rustup toolchain install nightly
cd ari-lang
rustup override set nightly
cargo build --release