fix: friendlier Windows onboarding message (#6242)
Co-authored-by: CLAWDINATOR <clawdinator@openclaw.ai> Co-authored-by: Scott Hanselman <scott@hanselman.com>main
parent
a1e89afcc1
commit
b897389b87
|
|
@ -11,7 +11,8 @@ title: "Windows (WSL2)"
|
||||||
OpenClaw on Windows is recommended **via WSL2** (Ubuntu recommended). The
|
OpenClaw on Windows is recommended **via WSL2** (Ubuntu recommended). The
|
||||||
CLI + Gateway run inside Linux, which keeps the runtime consistent and makes
|
CLI + Gateway run inside Linux, which keeps the runtime consistent and makes
|
||||||
tooling far more compatible (Node/Bun/pnpm, Linux binaries, skills). Native
|
tooling far more compatible (Node/Bun/pnpm, Linux binaries, skills). Native
|
||||||
Windows installs are untested and more problematic.
|
Windows might be trickier. WSL2 gives you the full Linux experience — one command
|
||||||
|
to install: `wsl --install`.
|
||||||
|
|
||||||
Native Windows companion apps are planned.
|
Native Windows companion apps are planned.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,8 +63,9 @@ export async function onboardCommand(opts: OnboardOptions, runtime: RuntimeEnv =
|
||||||
if (process.platform === "win32") {
|
if (process.platform === "win32") {
|
||||||
runtime.log(
|
runtime.log(
|
||||||
[
|
[
|
||||||
"Windows detected.",
|
"Windows detected — OpenClaw runs great on WSL2!",
|
||||||
"WSL2 is strongly recommended; native Windows is untested and more problematic.",
|
"Native Windows might be trickier.",
|
||||||
|
"Quick setup: wsl --install (one command, one reboot)",
|
||||||
"Guide: https://docs.openclaw.ai/windows",
|
"Guide: https://docs.openclaw.ai/windows",
|
||||||
].join("\n"),
|
].join("\n"),
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue