What you end up with
WhimprFlow installed like any other app on your Mac. It is free, and it stays free — there is no account, no trial and no subscription at the end of this.
- Time
- About 60 minutes
- Steps
- 18
- Cost
- Free
Before you start
These are one-time installs. If you have used Terminal before, you may have them already — the first step checks.
Install Git
Apple opens a small installer.
Type this into Terminal, then press Return.
xcode-select --installYou know this worked when: Git responds with a version number
Install Node LTS
Choose the macOS Installer (.pkg).
Open downloadYou know this worked when: Node responds with a version number
Install WhimprFlow
Open Terminal
Keep it open beside this page.
You know this worked when: Terminal is open
Check Git and Node
Use Terminal. Git and the current Node LTS are required.
Type this into Terminal, then press Return.
git --version node --versionYou know this worked when: Git and Node respond with version numbers
Install pnpm
The interface is a pnpm project.
Type this into Terminal, then press Return.
npm install -g pnpmYou know this worked when: pnpm responds with a version number
Install Rust
Run the single command the page shows, then reopen Terminal.
Open rustupYou know this worked when: cargo responds with a version number
Copy WhimprFlow to this Mac
Type this into Terminal, then press Return.
cd ~ if [ ! -d WhimprFlow/.git ]; then git clone https://github.com/Blueturboguy07/WhimprFlow.git fiYou know this worked when: A WhimprFlow folder appears
Open the WhimprFlow folder
Type this into Terminal, then press Return.
cd WhimprFlowYou know this worked when: Your terminal prompt is inside the WhimprFlow folder
Use the reviewed version
Type this into Terminal, then press Return.
git checkout 22c8d619a8cb87750d1b74b62c4fcb05c59ea55aYou know this worked when: Git reports the reviewed commit
Install the interface packages
The last line fixes a pnpm build-approval quirk — it's a no-op when not needed.
Type this into Terminal, then press Return.
cd ui pnpm install cd .. pnpm --dir ui approve-builds --all || trueYou know this worked when: The install finishes without an error
Make the speech model folder
The model is too large to ship in the repository.
Type this into Terminal, then press Return.
mkdir -p "$HOME/Library/Application Support/WhimprFlow/models"You know this worked when: The models folder exists
Download the speech model
About 150MB — the command fetches it straight into the models folder.
Type this into Terminal, then press Return.
if [ ! -f "$HOME/Library/Application Support/WhimprFlow/models/ggml-base.en.bin" ]; then curl -f -L -o "$HOME/Library/Application Support/WhimprFlow/models/ggml-base.en.bin" https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-base.en.bin fiYou know this worked when: ggml-base.en.bin sits in the models folder
Build the app
The first build compiles Whisper, so it takes a while.
Type this into Terminal, then press Return.
ui/node_modules/.bin/tauri build --bundles appYou know this worked when: A WhimprFlow.app appears in the bundle folder
Put WhimprFlow in Applications
Copy the freshly built app into Applications so it's a real, launchable Mac app.
Type this into Terminal, then press Return.
ditto target/release/bundle/macos/WhimprFlow.app /Applications/WhimprFlow.appYou know this worked when: WhimprFlow.app is in your Applications folder
Open WhimprFlow
Launch it to finish setup — and so it shows up in your apps list.
Type this into Terminal, then press Return.
open /Applications/WhimprFlow.appYou know this worked when: WhimprFlow opens
Choose how speech is cleaned up
In Settings pick OpenAI and paste a key, or keep the raw transcript.
You know this worked when: Settings saves without an error
Allow microphone and accessibility
Both live in Privacy & Security. It types for you, so it needs them.
You know this worked when: WhimprFlow reports both as granted
Hold Fn and speak
Release the key and your words land where the cursor is.
You know this worked when: Clean text appears in the app you were typing in
If something goes wrong
Nothing here can damage your computer, and every step can be run again safely. If a command fails, the usual cause is the step before it not having finished.
Still stuck? Tell us what happened and we will fix the guide. Include the step number and we can usually reproduce it.