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:
- Go to mimOE-SE Releases
- Download the appropriate file for your platform:
| Platform | File | Architecture |
|---|---|---|
| macOS | mimOE-SE-macOS-ARM64-v*.zip | Apple Silicon |
| Linux | mimOE-SE-linux-x86_64-v*.tar | x86_64 |
| Linux | mimOE-SE-linux-ARM64-v*.tar | ARM64 |
| Windows | mimOE-SE-windows-x64-v*.zip | x64 |
- Extract the archive
- Run the start script:
- macOS / Linux
- Windows
./start.sh
start.bat
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
- macOS / Linux
- Windows
pkill -f mimoe
taskkill /f /im mimoe.exe
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
- Developer Console: Set up your developer account
- Account Association: Associate your developer account for continuum features
- AI Foundation: Run AI models on-device