What you end up with
publikclip 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 45 minutes
- Steps
- 14
- 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 publikclip
Open Terminal
Keep it open beside this page.
You know this worked when: Terminal is open
Install Rust
Run the single command the page shows, then reopen Terminal.
Open rustupYou know this worked when: cargo responds with a version number
Install uv
uv manages the Python side of the app; the build stages it into the bundle.
Type this into Terminal, then press Return.
curl -LsSf https://astral.sh/uv/install.sh -o /tmp/uv-install.sh sh /tmp/uv-install.shYou know this worked when: uv reports it installed
Copy publikclip to this Mac
Type this into Terminal, then press Return.
cd ~ if [ ! -d publikclip/.git ]; then git clone https://github.com/Blueturboguy07/publikclip.git fiYou know this worked when: A publikclip folder appears
Open the publikclip folder
Type this into Terminal, then press Return.
cd publikclipYou know this worked when: Your terminal prompt is inside the publikclip folder
Use the reviewed version
Type this into Terminal, then press Return.
git checkout a53a359b985b1d2d666266062936cc186f02340bYou know this worked when: Git reports the reviewed commit
Install the interface packages
Type this into Terminal, then press Return.
cd app npm installYou know this worked when: The install finishes without an error
Build the app
The first build compiles the Rust shell, so it takes several minutes.
Type this into Terminal, then press Return.
export PATH="$HOME/.cargo/bin:$HOME/.local/bin:$PATH" npx tauri build --bundles appYou know this worked when: A publikclip.app appears in the bundle folder
Put publikclip 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 src-tauri/target/release/bundle/macos/publikclip.app /Applications/publikclip.appYou know this worked when: publikclip.app is in your Applications folder
Open publikclip
Built on your own machine, so macOS opens it without any warning dialog.
Type this into Terminal, then press Return.
open /Applications/publikclip.appYou know this worked when: publikclip opens
Pick the scoring brain
In onboarding, paste a free Gemini key (aistudio.google.com) — or pick Ollama if you run it.
You know this worked when: Onboarding accepts the choice
Feed it an hour
Paste a YouTube link and hit CUT IT. First run downloads the speech models (~4–5 GB).
You know this worked when: Scored clips appear in the review screen
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.