Install Lux

Get Lux running on your machine in under a minute.

From Source

Build Lux from source using Cargo. Requires Rust toolchain.

git clone https://git.qrty.ink/blu/lux
cd lux
cargo build --release

The binary will be at ./target/release/lux. Add it to your PATH:

export PATH="$PWD/target/release:$PATH"

Verify Installation

./target/release/lux --version
# Lux 0.1.0

Development with Nix

Enter a development shell with all dependencies available.

git clone https://git.qrty.ink/blu/lux
cd lux
nix develop

Inside the shell, you can run all development commands:

cargo build    # Build
cargo test     # Run tests
cargo run      # Run interpreter

Next Steps