MooshieUI builds with one toolchain on every platform. The same five steps work on Windows, Linux, and macOS. There are no prebuilt binaries to chase.
MooshieUI's frontend is Svelte + Vite; the shell is a Tauri (Rust) app. You'll need three things installed first:
JavaScript runtime for the frontend build. nodejs.org
Compiles the Tauri backend. Install via rustup.rs
Platform build tools (incl. Xcode CLT on macOS). Tauri v2 docs
Grab the source and move into the project directory.
$ git clone https://github.com/Mooshieblob1/MooshieUI.git
$ cd MooshieUIPull the frontend packages. Rust crates are fetched automatically on the first Tauri build.
$ npm installLaunch the app with hot-reload. The first run opens the setup wizard, which installs uv, Python 3.11, ComfyUI, and PyTorch, auto-detecting your GPU (NVIDIA / AMD / Intel / CPU). No manual ComfyUI install needed.
$ npm run tauri devProduce an optimized desktop build for your current platform.
$ npm run tauri build