0Pricing
OpenClaw Academy · درس

تثبيت OpenClaw CLI

ثبّته عالميًا باستخدام npm install -g openclaw@latest، أو استخدم نص التثبيت ذي السطر الواحد عبر curl من الصفحة الرئيسية

تثبيت OpenClaw CLI درس مجاني في OpenClaw Academy على CoddyKit. هذا هو الدرس 2 من أصل 4. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في OpenClaw Academy، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة OpenClaw Academy 4 دروس في المجموع.

بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.

Time to Install

With your prerequisites ready, installing OpenClaw is one short step. The install puts the openclaw command on your machine so you can run it from anywhere.

The npm Way

The standard method uses npm, which comes bundled with Node. It downloads OpenClaw from the npm registry and sets it up for you.

Install Globally

Run this command to install OpenClaw. The -g flag installs it globally, so the openclaw command works from any folder.

npm install -g openclaw@latest

What @latest Means

The @latest tag tells npm to grab the newest published release. You always start on the current version instead of an old cached one.

The One-Line Script

Prefer not to use npm directly? The homepage offers a curl install script that does the setup for you in a single line.

curl -fsSL https://openclaw.ai/install.sh | bash

Reading the curl Flags

In that one-liner, -fsSL makes curl fail quietly on errors and follow redirects, then bash runs the downloaded script. Both methods reach the same place.

npm or curl

Either path works, so pick what fits you. The choice is just preference: npm if you manage Node packages, curl for a quick hands-off setup.

Why Install Once, Run Anywhere

A global install registers a single openclaw command. From then on you type openclaw in any terminal without reinstalling per project.

Confirm It Landed

After installing, check that the command exists. Running openclaw --version prints the installed version and proves the install worked.

openclaw --version

If the Command Is Missing

If your shell cannot find openclaw, the global npm bin folder may not be on your PATH. Reopening the terminal often picks up the new command.

Installed, Not Configured Yet

Installing only places the tool on disk. The next stage, onboarding, is where you actually wire up the daemon and your channels.

Quick Check

Which command installs OpenClaw globally via npm?

Recap

You can now install OpenClaw two ways: npm install -g openclaw@latest or the curl one-liner. A quick --version check confirms it is ready to onboard. ⚙️

الأسئلة الشائعة

هل درس «تثبيت OpenClaw CLI» مجاني؟

نعم — نص درس «تثبيت OpenClaw CLI» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة OpenClaw Academy، انتقل إلى CoddyKit PRO. تتضمن دورة OpenClaw Academy 4 دروس في المجموع.

ماذا ستتعلم في «تثبيت OpenClaw CLI»؟

ثبّته عالميًا باستخدام npm install -g openclaw@latest، أو استخدم نص التثبيت ذي السطر الواحد عبر curl من الصفحة الرئيسية تتمرن على OpenClaw Academy مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.

هل أحتاج إلى خبرة سابقة لأبدأ OpenClaw Academy؟

لا تُشترط خبرة سابقة. OpenClaw Academy على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 2 من أصل 4.

كم من الوقت يستغرق درس «تثبيت OpenClaw CLI»؟

معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.

هل يمكنني كتابة وتشغيل أكواد في درس OpenClaw Academy هذا؟

نعم. كل درس في OpenClaw Academy يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.

جميع الدروس في هذه الدورة

  1. تحقق من المتطلبات المسبقة
  2. تثبيت OpenClaw CLI
  3. تشغيل معالج الإعداد الأولي
  4. فتح لوحة المعلومات المحلية
← العودة إلى OpenClaw Academy