getting-started beginner 5 minutes

OpenClaw Quick Start: First Success in 5 Minutes

A beginner-safe path to install OpenClaw, run onboarding, and confirm the local dashboard works end to end.

By CoClaw Team • • Updated June 8, 2026

What this quick start gives you

Use this page if you are setting up OpenClaw for the first time and want the shortest safe path to a working local dashboard.

By the end, you will have:

  • the OpenClaw CLI installed globally
  • the local daemon installed via onboarding
  • a dashboard session you can open and use

Before you start

  • Node.js 24 installed (recommended); Node.js 22.19+ is supported
  • a terminal session with permission to install global packages
  • about 5 minutes for first setup

Check your Node version first:

node --version

If the version is lower than 22.19, update Node before continuing. Prefer Node 24 for new installs.

Step 1: Install OpenClaw globally

Choose one package manager:

# npm
npm install -g openclaw@latest

# pnpm
pnpm add -g openclaw@latest

As of June 2026, openclaw@latest resolves to the stable 2026.6.1 release. Beta or main builds may show newer 2026.6.x versions, but they are not the default quick-start path.

For first installs, keep following this quick-start path. If you are upgrading an existing install, route through /guides/updating-and-migration first; the official openclaw 2026.6.1 release is canonical, and CoClaw routes readers to likely setup surfaces. After the first launch, use /openclaw-config-generator, /guides/openclaw-starter-config-presets, and /troubleshooting for safe expansion and fixes.

Quick check:

openclaw --version

Step 2: Run onboarding (installs daemon)

openclaw onboard --install-daemon

This creates ~/.openclaw/openclaw.json and installs a per-user Gateway service.

Step 3: Open the dashboard

openclaw dashboard

Fallback URL: http://127.0.0.1:18789/

If you see unauthorized, run openclaw dashboard again and open the tokenized link printed in your terminal (?token=...).

Verify your first success

You are done when all of these are true:

  • openclaw --version returns normally
  • onboarding completed without errors
  • the dashboard opens and loads your local session

If setup fails

  • Node version issue: run node --version; move to Node 24 or Node 22.19+, then retry onboarding.
  • Command not found: reinstall globally, then open a new terminal session.
  • Dashboard unauthorized: always launch with openclaw dashboard and use the tokenized URL.
  • Still blocked: check Troubleshooting for deeper fixes.

What to do next

Verification & references

  • Reviewed by:CoClaw Editorial Team
  • Last reviewed:June 8, 2026
  • Verified on: Cross-platform quick-start flow

Related Resources