Installation
Method 1: Rokit (Preferred)
Section titled “Method 1: Rokit (Preferred)”The recommended way to install and manage Kaledis is using Rokit, a toolchain manager for Roblox-related projects.
- If you haven’t already, install Rokit.
- Add Kaledis to your project:
rokit add orpos/kaledisThis ensures you are using the version of Kaledis specified in your project’s configuration, making collaboration easier.
Method 2: Cargo
Section titled “Method 2: Cargo”If you have Rust installed, you can install Kaledis directly from crates.io using Cargo.
cargo install kaledisThis will build and install the latest version of Kaledis to your Cargo bin directory.
Method 3: GitHub Releases
Section titled “Method 3: GitHub Releases”You can download pre-built binaries for Windows from the GitHub Releases page.
- Download the
.zipfile for your architecture. - Extract the archive.
- Add the extracted folder to your system’s
PATHenvironment variable to use thekalediscommand globally.
Method 4: Building from Source
Section titled “Method 4: Building from Source”To build the latest development version from source:
- Clone the repository:
Terminal window git clone https://github.com/orpos/kaledis.gitcd kaledis - Build using Cargo:
Terminal window cargo build --release - The binary will be located in
target/release/kaledis.