解决openclaw以及插件安装的报错

1 安装微信等插件报错 SafeOpenError: path is not a regular file under root

csharp 复制代码
$ npx -y @tencent-weixin/openclaw-weixin-cli@latest install  
[openclaw-weixin] 已找到本地安装的 openclaw  
[openclaw-weixin] 正在安装插件...  
[openclaw-weixin] 插件安装失败,请手动执行:  
failed to extract archive: SafeOpenError: path is not a regular file under root

openclaw plugins install "@tencent-weixin/openclaw-weixin"
less 复制代码
$ openclaw plugins install "@tencent-weixin/openclaw-weixin"  
10:09:54 [plugins] feishu_doc: Registered feishu_doc, feishu_app_scopes  
10:09:54 [plugins] feishu_chat: Registered feishu_chat tool  
10:09:54 [plugins] feishu_wiki: Registered feishu_wiki tool  
10:09:54 [plugins] feishu_drive: Registered feishu_drive tool  
10:09:54 [plugins] feishu_bitable: Registered bitable tools  
10:09:54 [plugins] [content-security] 状态目录: /Users/yangjie01/.openclaw  
10:09:54 [plugins] [content-security] 注册失败:缺少必要配置。endpoint=<https://jprx.m.qq.com/data/4064/forward>, token=空  
[wechat-access] 腾讯通路插件已注册

🦞 OpenClaw 2026.3.11 (29dc654) --- No $999 stand required.

Downloading @tencent-weixin/openclaw-weixin...  
Extracting /var/folders/ls/4yw8p6vx7vv1xs_lt4h9rx48g4lvj2/T/openclaw-npm-pack-dUwsva/tencent-weixin-openclaw-weixin-1.0.2.tgz...  
failed to extract archive: SafeOpenError: path is not a regular file under root

通过 claude-4.6-Sonnet 解决

问题总结:OpenClaw 插件安装失败

根本原因

OpenClaw 在 macOS 上安装插件时,使用了一个 Python 脚本来做原子文件写入runPinnedWriteHelper),该脚本用到了 os.open(path, flags, dir_fd=dir_fd)dir_fd 参数。

dir_fd 是 Linux 特有特性,macOS 的 Python 不支持,导致 Python 脚本崩溃:

csharp 复制代码
NotImplementedError: dir_fd unavailable on this platform

这个错误被层层包装后,以误导性的错误信息呈现给用户:

vbnet 复制代码
failed to extract archive: SafeOpenError: path is not a regular file under root

解决方案

⚠️ 将以下路径中的 {USERNAME} 替换为你的用户名,{NODE_VERSION} 替换为你的 Node.js 版本(如 v24.14.0

bash 复制代码
/Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/

Patch 1 --- install-safe-path-xC--QTS5.js:跳过非文件条目

scss 复制代码
sed -i '' 's/if (!sourceStat.isFile()) throw new Error(`archive staging contains unsupported entry: ${originalPath}`);/if (!sourceStat.isFile()) { continue; }/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/install-safe-path-xC--QTS5.js

Patch 2 --- windows-spawn-oQqooioe.js:新建文件时跳过 isFile 检查

arduino 复制代码
sed -i '' '469s/if (!stat.isFile()) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/if (!stat.isFile() && !createdForWrite) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/windows-spawn-oQqooioe.js

sed -i '' '473s/if (lstat.isSymbolicLink() || !lstat.isFile()) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/if (!createdForWrite && (lstat.isSymbolicLink() || !lstat.isFile())) throw new SafeOpenError("invalid-path", "path is not a regular file under root");/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/windows-spawn-oQqooioe.js

Patch 3 --- windows-spawn-oQqooioe.js:强制跳过 Python,走 Node.js fallback

arduino 复制代码
sed -i '' 's/const child = spawn("python3",/const { EventEmitter } = await import("node:events"); const child = Object.assign(new EventEmitter(), { stdin: null, stdout: Object.assign(new EventEmitter(), { setEncoding: ()=>{} }), stderr: Object.assign(new EventEmitter(), { setEncoding: ()=>{} }), kill: ()=>{} }); setTimeout(()=>child.emit("close", 0, null), 0); // patched\nif (false) spawn("python3",/' \
  /Users/{USERNAME}/.nvm/versions/node/{NODE_VERSION}/lib/node_modules/openclaw/dist/windows-spawn-oQqooioe.js

最终安装

ini 复制代码
# 清理残留配置(如有)
node -e "
const fs = require('fs');
const cfg = JSON.parse(fs.readFileSync(process.env.HOME + '/.openclaw/openclaw.json', 'utf8'));
cfg.plugins.allow = cfg.plugins.allow.filter(x => x !== 'openclaw-weixin');
delete cfg.plugins.entries['openclaw-weixin'];
delete cfg.plugins.installs['openclaw-weixin'];
fs.writeFileSync(process.env.HOME + '/.openclaw/openclaw.json', JSON.stringify(cfg, null, 2));
"

# 安装插件
openclaw plugins install "@tencent-weixin/openclaw-weixin"

# 扫码注册
npx -y @tencent-weixin/openclaw-weixin-cli@latest install

注意事项

  • OpenClaw 升级后 patch 会失效,需重新执行以上三个 patch
  • 这是 OpenClaw 的 bug,建议向官方反馈:macOS 上应优先检测平台是否支持 dir_fd,不支持时直接走 Node.js fallback
相关推荐
倔强的石头_13 小时前
不想每次都从头解释:我用 Doubao-Seed-Evolving 做了一个「稿件接力站」
ai编程
咩咩啃树皮13 小时前
第40篇:Vue3组件化开发精讲——组件拆分、复用、父子通信、工程化架构
java·前端·架构
阳光是sunny13 小时前
LangGraph中的Reducer是什么
前端·人工智能·后端
触底反弹13 小时前
一文搞懂 Tailwind CSS 弹性布局:从原理到实战
前端·css·html
阳光是sunny13 小时前
从链到图:LangGraph 入门基础全解析
前端·人工智能·后端
小林ixn14 小时前
从 ??= 到 onKeyDown:一个 React 组件的“自我修养”
前端·javascript·react.js
REDcker14 小时前
显示分辨率标准对照详解
前端·网络·分辨率·显示·屏幕
এ慕ོ冬℘゜15 小时前
前端实战:jQuery 多条件联合搜索(标题模糊查询 + 日历时间段筛选)
前端·javascript·jquery
武子康15 小时前
Search Console Platform Properties 扩大 SEO 资产边界:从 Page Ranking 到 Topic Coverage(5 类误读边界 + 3 表数据层设计)
前端·人工智能·后端
大模型码小白15 小时前
【Python零基础教程】继承、多态与魔法函数:面向对象编程三大核心特性详解
java·大数据·开发语言·人工智能·python·ai编程