Installation
vLLora can be installed via Homebrew, the Rust crate, or by building from source.
Homebrew (macOS & Linux)
Easy install on Linux and macOS using Homebrew.
brew tap vllora/vllora
brew install vllora
Launch vLLora:
vllora
This starts the gateway and opens the UI in your browser.
New to Homebrew? Check these guides:
Install with Rust Crate
Install vLLora directly from crates.io using Cargo. This is the recommended installation method for Linux users who have Rust installed.
Make sure you have Rust and Cargo installed. Visit rustup.rs to get started.
Install Command
Install vLLora using Cargo:
cargo install vllora
This will download and compile vLLora from the published crate on crates.io.
Launch vLLora
After installation, launch vLLora:
vllora
This starts the gateway and opens the UI in your browser at http://localhost:9091.
Build from Source
Want to contribute or run the latest development version? Clone the GitHub repository (including submodules) and build from source:
git clone https://github.com/vllora/vllora.git
cd vllora
git submodule update --init --recursive
cargo run serve
This will start the gateway on http://localhost:9090 with the UI available at http://localhost:9091 in your browser.
Make sure you have Rust installed. Visit rustup.rs to get started.