Installation
Download
Section titled “Download”CutReady provides pre-built installers for all major platforms. Download the latest release from GitHub Releases.
Download the .msi or .exe (NSIS) installer from the release page:
- x64 (Intel/AMD):
CutReady_x.x.x_x64-setup.exeor.msi - ARM64 (Snapdragon / Copilot+ PCs):
CutReady_x.x.x_arm64-setup.exeor.msi
- Run the installer
- Follow the setup wizard
- Launch CutReady from the Start Menu
Install with Homebrew:
brew tap sethjuarez/cutready https://github.com/sethjuarez/cutreadybrew trust --cask sethjuarez/cutready/cutreadybrew install --cask cutreadyTo upgrade later:
brew updatebrew upgrade --cask cutreadyOr download the .dmg file for your architecture:
- Apple Silicon (M1/M2/M3):
CutReady_x.x.x_aarch64.dmg - Intel:
CutReady_x.x.x_x64.dmg
- Open the
.dmgfile - Drag CutReady to your Applications folder
- Launch normally from Applications or Spotlight
Download the .deb package or .AppImage:
Debian/Ubuntu (.deb):
sudo dpkg -i cutready_x.x.x_amd64.debAppImage:
chmod +x CutReady_x.x.x_amd64.AppImage./CutReady_x.x.x_amd64.AppImagemacOS Homebrew install
Section titled “macOS Homebrew install”The recommended macOS install path is the CutReady Homebrew tap:
brew tap sethjuarez/cutready https://github.com/sethjuarez/cutreadybrew trust --cask sethjuarez/cutready/cutreadybrew install --cask cutreadyThis installs the notarized macOS build into /Applications. The cask chooses
the right download for your Mac automatically:
- Apple Silicon Macs use
CutReady_aarch64.dmg - Intel Macs use
CutReady_x64.dmg
If you already installed CutReady from the .dmg, quit the app before installing
or upgrading with Homebrew.
The brew trust command allows Homebrew to install the cask from the CutReady
tap. Run it after adding the tap and before installing the cask.
Troubleshooting Homebrew
Section titled “Troubleshooting Homebrew”If Homebrew cannot find the cask, refresh the tap and try again:
brew untap sethjuarez/cutreadybrew tap sethjuarez/cutready https://github.com/sethjuarez/cutreadybrew trust --cask sethjuarez/cutready/cutreadybrew install --cask cutreadyIf the download fails with a missing asset, install the latest .dmg from
GitHub Releases. The
Homebrew cask depends on the latest release publishing both macOS assets:
CutReady_aarch64.dmgCutReady_x64.dmg
To remove CutReady and its local app data:
brew uninstall --zap --cask cutreadyPrerequisites
Section titled “Prerequisites”The current planning, AI, screenshots, versioning, sync, and Word export features do not require browser setup. Later-phase browser recording features will need:
- Chrome or Microsoft Edge installed
- An active browser profile (CutReady detects installed profiles automatically)
Building from Source
Section titled “Building from Source”If you prefer to build from source:
# Clone the repositorygit clone https://github.com/sethjuarez/cutready.gitcd cutready
# Install frontend dependenciesnpm install
# Run in development modenpm run tauri dev
# Build for productionnpm run tauri buildBuild Prerequisites
Section titled “Build Prerequisites”- Node.js (LTS)
- Rust (stable)
- Tauri CLI v2 (
npm install -g @tauri-apps/cli)
For Linux, you’ll also need:
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev \ librsvg2-dev patchelf libpipewire-0.3-dev libgbm-dev