Skip to main content
Tested on Windows 10 (21H2+) and Windows 11. All commands are for PowerShell. Open a new terminal after each installer to pick up PATH changes.
1

Install Visual Studio Build Tools

Download and run the Visual Studio Build Tools installer.In the installer, check the “Desktop development with C++” workload and click Install. Make sure these optional components are selected (they should be by default):
  • MSVC Build Tools for x64/x86 (Latest)
  • Windows 10/11 SDK
  • C++ CMake tools for Windows
Verify:
If you have full Visual Studio (not just Build Tools) with the C++ workload, that works too.
2

Install Node.js 22

Option A - nvm-windows (recommended):Download and run the latest nvm-setup.exe, then open a new terminal:
Option B - Download the LTS 22.x MSI installer from nodejs.org.Verify (in a new terminal):
The project requires node >= 22.12.0 (see package.json engines). Using nvm install lts may install a newer major version that hasn’t been tested.
3

Install Python

Python is required by node-gyp to compile native Node.js modules.
Or download from python.org - make sure “Add to PATH” is checked.Verify (in a new terminal):
4

Install the Rust toolchain

Download and run rustup-init.exe. Accept the defaults (installs stable-msvc).Verify (in a new terminal):
5

Install GStreamer (MSVC)

Download the MSVC x86_64 installer from gstreamer.freedesktop.org/download - click Windows > MSVC x86_64 (VS 2022, Release CRT).
For GStreamer 1.28+, there is a single combined installer (runtime + development). For older versions, download both the Runtime and Development MSI files.
Run with default settings. After installation, verify (open a new terminal):
The installer didn’t set it. Find where GStreamer was installed and set it manually:
Then restart your terminal.If GStreamer installed to C:\Program Files\gstreamer\ instead of C:\gstreamer\, that’s fine - just make sure the path matches your installation.
6

Install CMake

Or download from cmake.org/download - make sure “Add to PATH” is checked.Verify (in a new terminal):
7

Clone the repo and install dependencies

npm install takes a few minutes. It automatically rebuilds better-sqlite3 for Electron via the postinstall script.Verify:
8

Build the GStreamer echo-cancellation addon

First, check the Electron version:
Then build targeting that version:
Replace <ELECTRON_VERSION> with the version from the previous command.
The --runtime electron --runtime-version flags are required. Without them, the addon is built for Node.js instead of Electron and will crash when loaded. If you upgrade Electron later, you must rebuild this addon with the new version.
The build-deps.sh script is macOS-only. On Windows, the GStreamer MSVC installer already includes all required plugins (including WebRTC DSP).
Verify:
9

Build the Windows audio capture module

Verify:
  • Linker errors: Make sure Rust is using the MSVC target: rustup default stable-msvc
  • “Windows SDK not found”: Open Visual Studio Installer > Modify > Individual components and install the latest “Windows 10 SDK” or “Windows 11 SDK”
10

Run the app

The Electron app opens. On first launch you’ll see a 6-step onboarding flow - enter your API keys (Deepgram for transcription, Claude or OpenAI for AI assistance).
If audio capture doesn’t work, check Settings > Sound and make sure the correct playback and recording devices are set as default. WASAPI captures from the default devices.

Troubleshooting