#reinstall — always falls

1 messages · Page 1 of 1 (latest)

final spruce
#

“Stuck on 2026.2.19 on Mac. Tried npm install @latest, curl installer, rm + reinstall — always falls back to old version. Config was touched by 4.5+. Help?”

ruby pumiceBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

spice eagleBOT
#

Yep — this usually means the launchd service is still pinned to an old Node/nvm global path, so reinstalling the package doesn’t change what the background gateway runs.

Run this exact checklist and paste output:

openclaw --version
which -a openclaw
openclaw gateway status
openclaw doctor

Then do the common fix:

openclaw gateway uninstall
openclaw gateway install --force
#
openclaw gateway restart
openclaw --version
openclaw gateway status

If it still snaps back to 2026.2.19 and you use nvm, do this (stale nvm Node-global install case on macOS):

nvm exec 24 npm uninstall -g openclaw || true
nvm exec 22 npm install -g openclaw@latest
nvm exec 22 openclaw gateway uninstall
nvm exec 22 openclaw gateway install --force
nvm exec 22 openclaw gateway restart
nvm exec 22 openclaw --version