rellum.dev/install
Install Rellum
Download the Rellum compiler and tick package tool. Each archive contains the rellum compiler, the tick project tool, standard library sources, and license files.
Latest Release
Rellum 0.1.0
Downloads
| system | file | size | sha256 |
|---|---|---|---|
| Windows x64 | rellum-0.1.0-windows-x64.zip | 18 MB | SHA256SUMS |
| Linux x64 | rellum-0.1.0-linux-x64.tar.gz | 16 MB | SHA256SUMS |
| macOS arm64 | rellum-0.1.0-macos-arm64.tar.gz | 17 MB | SHA256SUMS |
| source | rellum-0.1.0-source.tar.gz | 2 MB | SHA256SUMS |
Windows
Expand-Archive .\rellum-0.1.0-windows-x64.zip C:\rellum
setx PATH "%PATH%;C:\rellum\bin"
rellum --version
tick --version
Linux and macOS
mkdir -p ~/.local/rellum
tar -xzf rellum-0.1.0-linux-x64.tar.gz -C ~/.local/rellum
ln -sf ~/.local/rellum/bin/rellum ~/.local/bin/rellum
ln -sf ~/.local/rellum/bin/tick ~/.local/bin/tick
rellum --version
tick --version
Build From Source
git clone https://github.com/rellum-lang/rellum
cd rellum
cargo build --release
cargo test
target/release/rellum --version
target/release/tick --version
Toolchain Notes
- Rellum emits native programs. Keep Clang, LLVM, and a native linker installed.
- `tick` manages Rellum projects, manifests, and package dependencies.
- The registry endpoint is `https://registry.rellum.dev`.
Older Versions
| version | date | release |
|---|---|---|
| 0.1.0 | 2026-05-29 | release notes |