Get started

Installation

Install the SDKs, CLI, and native modules from the public releases.

Prefer zero setup? Skip this page entirely: the hosted [Edge Studio Canvas](/studio) and the Google Colab notebook (see *Try it in your browser*) need nothing installed. Local installation is for embedding the runtime in your own apps.

Install from the public releases

  1. 1

    App SDK (TypeScript / Expo)

    The runtime SDK plus the native mobile module. Framework bindings are available for React (@lyboai/react), Angular, and .NET.

    npm i @lyboai/runtime expo-lyboai
    # optional extras
    npm i @lyboai/media   # voice / vision helpers
    npm i @lyboai/react   # React provider + hooks
  2. 2

    Python SDK

    Create, train, evaluate, and package agents from Python (used by the Colab notebook).

    pip install lyboai
  3. 3

    lybo CLI (prebuilt binary)

    Sign packs, mint keypairs, validate licences, run the local server. Download for your platform from the public releases:

    # https://github.com/rajandua20/lyboai-releases/releases
    #   lybo-windows-x64.exe   lybo-linux-x64
  4. 4

    Tag LyboAI in Claude (MCP)

    npx -y @lyboai/mcp   # set LYBO_BINARY to your downloaded lybo binary
Source access — the runtime is commercial (LYBO OS Commercial License): packages ship compiled, and the source repository is available to licensed partners. Free evaluation is unrestricted; production use needs a licence key. See *Plan & Pricing* in Edge Studio.

For device builds (licensed source access)

  • Rust (stable) — install from rustup.rs. Needed to build the runtime, CLI, and native mobile libraries from source.
  • For device builds: Android NDK (via cargo-ndk) and/or Xcode for iOS — the release-mobile CI workflow builds the Android .so set and the iOS Lybo.xcframework on every version tag.
On Windows, if you build inside a cloud-synced folder (OneDrive etc.), point cargo at a local target dir first: $env:CARGO_TARGET_DIR="C:\temp\lybo-target".