I witnessed a series of fails about homebrew installs suach as:
โ Homebrew install โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ โ
โ Run: โ
โ /bin/bash -c "$(curl -fsSL โ
โ https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" โ
โ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โ
โ Install failed: blogwatcher โ go not installed (install via brew)
Tip: run openclaw doctor to review skills + requirements.
Docs: https://docs.openclaw.ai/skills
โ
โ Install failed: blucli โ go not installed (install via brew)
Tip: run openclaw doctor to review skills + requirements.
Docs: https://docs.openclaw.ai/skills
what do I do
#skills install fails
1 messages ยท Page 1 of 1 (latest)
You may have not ran commands to register homebrew to path
It appears when you install homebrew
There are maybe 2-3 commands to register homebrew path
Those errors mean the skills youโre trying to install need external dependencies, and OpenClaw is detecting you donโt have them yet:
blogwatcher+blucliโ require Go- and itโs suggesting installing Go โvia brewโ โ so you need Homebrew working first
1) Install Homebrew (macOS)
Run exactly what it printed:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
After that, make sure brew is on your PATH (common gotcha on Apple Silicon). Try:
brew --version
If brew is โcommand not foundโ, run one of these (depending on your Mac):
Apple Silicon (M1/M2/M3):
eval "$(/opt/homebrew/bin/brew shellenv)"
Intel:
eval "$(/usr/local/bin/brew shellenv)"
(Then re-try brew --version.)
2) Install Go
brew install go
go version
3) Re-run OpenClaw doctor / skill install
openclaw doctor
Then re-run whatever you used to install the skills (or just try again in the UI/flow that triggered it).
If you want me to be precise about the next command
Paste the output of:
openclaw --version
openclaw doctor
brew --version
go version
โฆand tell me your OS (macOS? which version).
I am running on a linus vps, not a MAC
I am running on a linus vps, not a MAC
Yep โ that Homebrew hint is just one option. On a Linux VPS you usually install the dependency with your distro package manager instead.
Those two failures mean: the skills blogwatcher and blucli need Go, and Go isnโt installed.
1) Install Go (pick your distro)
Debian/Ubuntu:
sudo apt update
sudo apt install -y golang
go version
(Depending on distro, the package name might be golang-go instead:)
sudo apt install -y golang-go
Fedora/RHEL/CentOS (newer):
sudo dnf install -y golang
go version
Arch:
sudo pacman -S --noconfirm go
go version
2) Re-run the skill dependency check
openclaw doctor