#skills install fails

1 messages ยท Page 1 of 1 (latest)

zenith steeple
#

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

dusty jayBOT
#

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

rough prawn
#

It appears when you install homebrew

#

There are maybe 2-3 commands to register homebrew path

broken karmaBOT
#

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).

zenith steeple
zenith steeple
#

I am running on a linus vps, not a MAC

broken karmaBOT
#

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