热门标签:
感谢您的支持,我会继续努力的!
Copyright © 2021-2026 App虚拟卡网站。未经许可,禁止复制、转载或使用本站内容。
APP码客 资讯/黑科技 OpenClaw全攻略:普通人最全最实惠的保姆级教程 https://appsmk.com/openclaw%e5%85%a8%e6%94%bb%e7%95%a5%ef%bc%9a%e6%99%ae%e9%80%9a%e4%ba%ba%e6%9c%80%e5%85%a8%e6%9c%80%e5%ae%9e%e6%83%a0%e7%9a%84%e4%bf%9d%e5%a7%86%e7%ba%a7%e6%95%99%e7%a8%8b/
0) 一次性准备(执行策略 + Node 检查) # 允许当前用户执行本地脚本(避免 openclaw.ps1 被拦截) Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force # 检查 Node (需 >=22) node -v npm -v 1) 安装 OpenClaw(若已安装可跳过) # 官方安装脚本 iwr -useb https://openclaw.ai/install.ps1 | iex # 验证 openclaw –version 2) 初始化并启动网关 # 首次向导 openclaw onboard # 启动网关服务 openclaw gateway start # 检查状态 openclaw gateway status 控制台地址:
http://127.0.0.1:18789 3) 安装 Python 版 Free Ride 技能(路线 B) # 确认 Python/pip python –version python -m pip –version # 准备目录 $skillsRoot=”$env:USERPROFILE\.openclaw\workspace\skills” $skillDir=”$skillsRoot\free-ride” $zip=Join-Path $env:TEMP “free-ride.zip” $url=”https://wry-manatee-359.convex.site/api/v1/download?slug=free-ride” New-Item -ItemType Directory -Force -Path $skillsRoot | Out-Null if(Test-Path $skillDir){ Remove-Item -Recurse -Force $skillDir } New-Item -ItemType Directory -Force -Path $skillDir | Out-Null # 下载并解压 iwr -useb $url -OutFile $zip Expand-Archive -Path $zip -DestinationPath $skillDir -Force # 安装技能 cd $skillDir python -m pip install -U pip setuptools wheel python -m pip install -e . 4) 配置 OpenRouter Key(持久化到 OpenClaw 配置) 先去申请 Key: https://openrouter.ai/keys
然后执行(替换为你自己的 Key):
openclaw config set env.OPENROUTER_API_KEY “你的_OPENROUTER_API_KEY” 5) 自动切换到免费模型 + 重启网关 # 运行 Free Ride 自动配置 & “$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe” auto # 重启网关 openclaw gateway restart 6) 验证是否生效 # 模型状态 openclaw models status # freeride 状态 & “$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe” status # 网关状态 openclaw gateway status 网页里确认模型已是 openrouter/…:free(例如 nvidia/nemotron-…:free)。
7) 常用故障修复(直接复制) A. 网关卡住/1006/重启超时 openclaw gateway stop Start-Sleep -Seconds 3 schtasks /End /TN “OpenClaw Gateway” 2>$null Start-Sleep -Seconds 2 netstat -ano | findstr “:18789” openclaw gateway start openclaw gateway status B. 暂时不用 Telegram(减少干扰) openclaw config set channels.telegram.enabled false openclaw config set plugins.entries.telegram.enabled false openclaw gateway restart 8) 你的关键文件位置 主配置: C:\Users\Administrator\.openclaw\openclaw.json 工作区: C:\Users\Administrator\.openclaw\workspace 用户记忆: C:\Users\Administrator\.openclaw\workspace\USER.md 长期记忆: C:\Users\Administrator\.openclaw\workspace\MEMORY.md
为您解决烦忧 - 24小时在线 专业服务
admin
APP码客 (appsmk.com) 全球海外APP虚拟手机号注册领航者支持 Telegram、WhatsApp、TikTok、OpenAI 等主流 APP 快速收码,解决注册难题。一站式获取海外手机号,助力您的业务走向全球!
OpenClaw全攻略:普通人最全最实惠的保姆级教程
【保姆级】OpenClaw 全网最细教学:安装→Skills实战→多Agent协作,1 小时全精通!
0) 一次性准备(执行策略 + Node 检查) # 允许当前用户执行本地脚本(避免 openclaw.ps1 被拦截) Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force # 检查 Node (需 >=22) node -v npm -v 1) 安装 OpenClaw(若已安装可跳过) # 官方安装脚本 iwr -useb https://openclaw.ai/install.ps1 | iex # 验证 openclaw --version 2) 初始化并启动网关 # 首次向导 openclaw onboard # 启动网关服务 openclaw gateway start # 检查状态 openclaw gateway status 控制台地址: http://127.0.0.1:18789 3) 安装 Python 版 Free Ride 技能(路线 B) # 确认 Python/pip python --version python -m pip --version # 准备目录 $skillsRoot="$env:USERPROFILE\.openclaw\workspace\skills" $skillDir="$skillsRoot\free-ride" $zip=Join-Path $env:TEMP "free-ride.zip" $url="https://wry-manatee-359.convex.site/api/v1/download?slug=free-ride" New-Item -ItemType Directory -Force -Path $skillsRoot | Out-Null if(Test-Path $skillDir){ Remove-Item -Recurse -Force $skillDir } New-Item -ItemType Directory -Force -Path $skillDir | Out-Null # 下载并解压 iwr -useb $url -OutFile $zip Expand-Archive -Path $zip -DestinationPath $skillDir -Force # 安装技能 cd $skillDir python -m pip install -U pip setuptools wheel python -m pip install -e . 4) 配置 OpenRouter Key(持久化到 OpenClaw 配置) 先去申请 Key: https://openrouter.ai/keys 然后执行(替换为你自己的 Key): openclaw config set env.OPENROUTER_API_KEY "你的_OPENROUTER_API_KEY" 5) 自动切换到免费模型 + 重启网关 # 运行 Free Ride 自动配置 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" auto # 重启网关 openclaw gateway restart 6) 验证是否生效 # 模型状态 openclaw models status # freeride 状态 & "$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe" status # 网关状态 openclaw gateway status 网页里确认模型已是 openrouter/...:free(例如 nvidia/nemotron-...:free)。 7) 常用故障修复(直接复制) A. 网关卡住/1006/重启超时 openclaw gateway stop Start-Sleep -Seconds 3 schtasks /End /TN "OpenClaw Gateway" 2>$null Start-Sleep -Seconds 2 netstat -ano | findstr ":18789" openclaw gateway start openclaw gateway status B. 暂时不用 Telegram(减少干扰) openclaw config set channels.telegram.enabled false openclaw config set plugins.entries.telegram.enabled false openclaw gateway restart 8) 你的关键文件位置 主配置: C:\Users\Administrator\.openclaw\openclaw.json 工作区: C:\Users\Administrator\.openclaw\workspace 用户记忆: C:\Users\Administrator\.openclaw\workspace\USER.md 长期记忆: C:\Users\Administrator\.openclaw\workspace\MEMORY.md
0) 一次性准备(执行策略 + Node 检查)
# 允许当前用户执行本地脚本(避免 openclaw.ps1 被拦截)
Set-ExecutionPolicy -Scope CurrentUser RemoteSigned -Force
# 检查 Node (需 >=22)
node -v
npm -v
1) 安装 OpenClaw(若已安装可跳过)
# 官方安装脚本
iwr -useb https://openclaw.ai/install.ps1 | iex
# 验证
openclaw –version
2) 初始化并启动网关
# 首次向导
openclaw onboard
# 启动网关服务
openclaw gateway start
# 检查状态
openclaw gateway status
控制台地址:
http://127.0.0.1:18789
3) 安装 Python 版 Free Ride 技能(路线 B)
# 确认 Python/pip
python –version
python -m pip –version
# 准备目录
$skillsRoot=”$env:USERPROFILE\.openclaw\workspace\skills”
$skillDir=”$skillsRoot\free-ride”
$zip=Join-Path $env:TEMP “free-ride.zip”
$url=”https://wry-manatee-359.convex.site/api/v1/download?slug=free-ride”
New-Item -ItemType Directory -Force -Path $skillsRoot | Out-Null
if(Test-Path $skillDir){ Remove-Item -Recurse -Force $skillDir }
New-Item -ItemType Directory -Force -Path $skillDir | Out-Null
# 下载并解压
iwr -useb $url -OutFile $zip
Expand-Archive -Path $zip -DestinationPath $skillDir -Force
# 安装技能
cd $skillDir
python -m pip install -U pip setuptools wheel
python -m pip install -e .
4) 配置 OpenRouter Key(持久化到 OpenClaw 配置)
先去申请 Key:
https://openrouter.ai/keys
然后执行(替换为你自己的 Key):
openclaw config set env.OPENROUTER_API_KEY “你的_OPENROUTER_API_KEY”
5) 自动切换到免费模型 + 重启网关
# 运行 Free Ride 自动配置
& “$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe” auto
# 重启网关
openclaw gateway restart
6) 验证是否生效
# 模型状态
openclaw models status
# freeride 状态
& “$env:USERPROFILE\AppData\Local\Python\pythoncore-3.14-64\Scripts\freeride.exe” status
# 网关状态
openclaw gateway status
网页里确认模型已是 openrouter/…:free(例如 nvidia/nemotron-…:free)。
7) 常用故障修复(直接复制)
A. 网关卡住/1006/重启超时
openclaw gateway stop
Start-Sleep -Seconds 3
schtasks /End /TN “OpenClaw Gateway” 2>$null
Start-Sleep -Seconds 2
netstat -ano | findstr “:18789”
openclaw gateway start
openclaw gateway status
B. 暂时不用 Telegram(减少干扰)
openclaw config set channels.telegram.enabled false
openclaw config set plugins.entries.telegram.enabled false
openclaw gateway restart
8) 你的关键文件位置
主配置: C:\Users\Administrator\.openclaw\openclaw.json
工作区: C:\Users\Administrator\.openclaw\workspace
用户记忆: C:\Users\Administrator\.openclaw\workspace\USER.md
长期记忆: C:\Users\Administrator\.openclaw\workspace\MEMORY.md