Skip to main content

Installing the Runtime

This guide covers installing the bare mimOE runtime for platform development and building custom mims.

Looking for AI capabilities?

If you want to run AI models on-device, use the AI Foundation Package instead. It includes the runtime, AI addon, and a pre-configured model with a single install command.

Desktop Platforms

Download

Download the runtime directly from GitHub:

  1. Go to mimOE-SE Releases
  2. Download the appropriate file for your platform:
PlatformFileArchitecture
macOSmimOE-SE-macOS-ARM64-v*.zipApple Silicon
LinuxmimOE-SE-linux-x86_64-v*.tarx86_64
LinuxmimOE-SE-linux-ARM64-v*.tarARM64
WindowsmimOE-SE-windows-x64-v*.zipx64
  1. Extract the archive
  2. Run the start script:
./start.sh

Verify Installation

Check that mimOE is running:

curl -X POST "http://localhost:8083/jsonrpc/v1" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"getMe","id":1}'

Stop mimOE

pkill -f mimoe

Mobile Platforms

iOS

Coming Soon

iOS integration guide coming soon. mimOE runs as an embedded library within your iOS application.

Android

mimOE runs as an embedded library within your Android application. Add the SDK dependency to your build.gradle.kts:

dependencies {
implementation("com.mimik:mimoe-android-developerai:3.20.0")
}

See the Android SDK Reference for the full setup guide, SDK variants, and API documentation.

Next Steps