Editor Install
Rime Editor is currently a source-built Electron app. Public downloads and signed installers are not published yet.
Current Dev Install
Section titled “Current Dev Install”Clone rime and rime-editor next to each other:
mkdir rime-workspacecd rime-workspace
git clone https://github.com/danielsjoo/rimegit clone https://github.com/danielsjoo/rime-editor
cd rime-editornpm installnpm run devOn npm run dev, the editor runs scripts/prepare-rime-link.cjs. That script
links the local @rimekit/core, @rimekit/lineage, and @rimekit/runtime
packages, rebuilds them, and links the Python/R sidecar runtimes used by the
desktop app.
If your checkouts are not siblings, set RIME_REPO_ROOT:
RIME_REPO_ROOT=/path/to/rime npm run devBuild App Bundles
Section titled “Build App Bundles”The packaging commands also prepare the local Rime runtime before building:
npm run build:macnpm run build:winnpm run build:linuxFor an unsigned local macOS build:
npm run dist-no-signVerifying
Section titled “Verifying”Open the app and load a folder that contains pipeline.dag.yaml. The first
useful smoke test is the checked-in DAG showcase:
/path/to/rime/examples/dag-showcaseThe editor should show the DAG canvas, node inspector, dataset preview, and report preview without requiring Python or R sidecars because that example uses core nodes for its runnable path.
Planned Release Installs
Section titled “Planned Release Installs”The intended release path is packaged desktop downloads for macOS, Windows, and Linux, with the compatible Rime runtime bundled. Auto-update behavior should only be documented once signed public builds are available and tested.