From 171a579cefbf4c4001b81b1b55be5480d2468df5 Mon Sep 17 00:00:00 2001 From: Rick Mu Date: Fri, 13 Feb 2026 13:35:25 +1100 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=EF=BC=9A=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=BC=80=E5=9C=BA=E8=AF=AD=EF=BC=8C=E6=9B=B4=E6=96=B0=E4=BB=93?= =?UTF-8?q?=E5=BA=93=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 365095b..c2e5f9c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ -说实话,我之前用 Claude Code 每个月烧几百块,后来发现了 OpenClaw(龙虾AI),直接本地部署,还能免费白嫖 MiniMax 大模型7天。配置过程也很简单,一行命令搞定,不用折腾环境。这篇教程把我踩过的坑都整理好了,照着做5分钟就能跑起来。 +说实话,我之前一直在找好用的 AI 编程助手,后来发现了 OpenClaw(龙虾AI),直接本地部署,还能免费白嫖 MiniMax 大模型7天。配置过程也很简单,一行命令搞定,不用折腾环境。这篇教程把我踩过的坑都整理好了,照着做5分钟就能跑起来。
@@ -47,7 +47,7 @@ 打开终端,粘贴以下命令: ```bash -curl -fsSL https://raw.githubusercontent.com/anthropics/openclaw-minimax-setup/main/install-macos.sh | bash +curl -fsSL https://raw.githubusercontent.com/736773174/openclaw-setup-cn/main/install-macos.sh | bash ``` ### Windows @@ -55,7 +55,7 @@ curl -fsSL https://raw.githubusercontent.com/anthropics/openclaw-minimax-setup/m 以**管理员身份**打开 PowerShell,运行: ```powershell -iwr -useb https://raw.githubusercontent.com/anthropics/openclaw-minimax-setup/main/install-windows.ps1 | iex +iwr -useb https://raw.githubusercontent.com/736773174/openclaw-setup-cn/main/install-windows.ps1 | iex ``` > **Windows 说明:** 脚本会自动安装 WSL2(Windows 子系统 Linux)。可能需要重启,重启后再次运行脚本即可。 @@ -185,13 +185,13 @@ openclaw skills ### macOS ```bash -curl -fsSL https://raw.githubusercontent.com/anthropics/openclaw-minimax-setup/main/uninstall-macos.sh | bash +curl -fsSL https://raw.githubusercontent.com/736773174/openclaw-setup-cn/main/uninstall-macos.sh | bash ``` ### Windows(管理员 PowerShell) ```powershell -iwr -useb https://raw.githubusercontent.com/anthropics/openclaw-minimax-setup/main/uninstall-windows.ps1 | iex +iwr -useb https://raw.githubusercontent.com/736773174/openclaw-setup-cn/main/uninstall-windows.ps1 | iex ``` ---