Install it in 5 minutes, no coding needed

New to tools like this? You're in the right place. This guide walks you through every step in plain English: install one free program, open a simple window, and paste a single line. That's it.

About 5 minutes No experience required Windows, Mac & Linux
Start with Step 1 Read the full docs Free 5-hour trial · no credit card

Installation at a glance

01

Install Node.js

The free engine our app runs on. One-time setup.

02

Open a terminal

A simple window where you type one command.

03

Install the app

Paste one line. npm downloads everything for you.

04

Launch & set up

Run it. A friendly wizard does the rest.

Step by step

Let's get you set up

Pick your operating system so the instructions match exactly what you'll see on screen.

I'm using:
1
Step 1

Install Node.js

Node.js is a free, open-source program that our app runs on. Installing it also gives you npm, the tool that downloads and installs apps like ours. You only do this once.

Click the button below, then run the file it downloads:

Download Node.js (LTS)

On Windows, open the downloaded .msi file and click Next → Next → Install → Finish. The default options are exactly what you need. You don't have to change anything.

On macOS, open the downloaded .pkg file and click Continue → Install. Enter your Mac password if it asks. Then close the installer.

On Linux, the easiest way is your distribution's packages. On Debian / Ubuntu:

Terminal
$ curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
$ sudo apt-get install -y nodejs

On Fedora use sudo dnf install nodejs; on Arch, sudo pacman -S nodejs npm.

Choose the "LTS" version LTS stands for Long-Term Support. It's the most stable, best-tested release. If you see two download buttons, pick LTS.
You'll also need Google Chrome installed Reddit Sonar uses a browser to scan Reddit. If Chrome isn't already on your computer, install it now so the app launches cleanly later. No Chrome? You can instead run npx playwright install chromium in the terminal to grab a bundled browser.
2
Step 2

Open your terminal

The terminal (also called the command line) is a plain window where you type commands. It looks technical, but don't worry. You'll only paste one line into it. Here's how to open it on :

Press ⊞ Win type cmd press Enter

A black window titled Command Prompt will open. (You can also use PowerShell. Either works.)

Press ⌘ Cmd + Space type Terminal press Enter

This opens Spotlight search and launches the Terminal app.

Press Ctrl + Alt + T

Or search for Terminal in your applications menu.

You'll know it worked when… A window appears with a blinking cursor waiting for you to type. That's the terminal. You're ready for the next step.
3
Step 3

Install Reddit Sonar

In the terminal window, copy the line below, paste it in, and press Enter. npm will download everything automatically. This usually takes a minute.

Terminal
$ npm install -g reddit-sonar

To paste into the terminal: Windows, right-click or Ctrl+V. Mac, ⌘ Cmd+V. Linux, Ctrl+Shift+V.

This is a preview. The numbers and timing on your screen will differ.
See "permission denied"? Put sudo in front and run it again: sudo npm install -g reddit-sonar. It'll ask for your Mac password (typing shows nothing, that's normal, just press Enter).
See "permission denied" (EACCES)? Put sudo in front: sudo npm install -g reddit-sonar, then enter your password.
What does -g mean? It's short for "global": it installs the app so you can start it from any terminal window, anytime.
4
Step 4

Launch it & you're done

Start the app by typing its name and pressing Enter:

Terminal
$ reddit-sonar

The first time you run it, a friendly setup wizard opens right inside the terminal. It checks everything is ready, helps you log in to Reddit, and (optionally) adds an AI key. Just follow the on-screen prompts. There are no files to edit by hand.

Want the details? The Setup Wizard guide in our docs explains every check and prompt, step by step.

Next time you want to use it, you don't repeat any of this. Just open a terminal (Step 2) and type reddit-sonar again.

That's it, you're all set

You've installed Reddit Sonar. Try every feature free for 5 hours — no credit card — and watch real leads roll in. Keep going for a year with a one-time $199 license (no subscription, no auto-renew).

Free 5-hour trial · no credit card
Stuck?

Common beginner hiccups

Almost every install issue is one of these, and each has a quick fix.

"'node' or 'npm' is not recognized"
Your terminal was open before Node.js finished installing. Close it completely and open a brand-new terminal window, then try again. Still stuck? Restart your computer so the change takes effect.
"permission denied" / "EACCES"
On Mac/Linux, add sudo in front: sudo npm install -g reddit-sonar, then enter your password. On Windows, close the terminal and reopen it as Administrator (right-click → "Run as administrator").
"'reddit-sonar' is not recognized"
The install in Step 3 didn't finish. Scroll up in the terminal and re-run the npm install -g reddit-sonar line, watching for any red error text. Fix that error (usually permissions, see above) and it'll work.
It looks frozen / stuck
Downloading can take a minute or two on a slow connection. As long as you don't see an error, let it finish. A row of progress bars or a spinning line means it's still working.
"Chrome not found" when it launches
The app needs a browser to scan Reddit. Install Google Chrome, or run npx playwright install chromium in the terminal to grab a bundled browser.
Something else?
We're happy to help. Check the troubleshooting docs or reach us on the contact page. We usually reply within 24 hours.