0Pricing
OpenClaw Academy · Aula

Instale o CLI do OpenClaw

Instale globalmente com npm install -g openclaw@latest ou use o script de instalação curl de uma linha disponível na página inicial.

Instale o CLI do OpenClaw é uma aula grátis de OpenClaw Academy no CoddyKit. Esta é a aula 2 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de OpenClaw Academy, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de OpenClaw Academy inclui 4 aulas no total.

Partes desta aula ainda não foram traduzidas e aparecem em inglês.

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. ⚙️

Perguntas Frequentes

A aula “Instale o CLI do OpenClaw” é grátis?

Sim — o texto completo de “Instale o CLI do OpenClaw” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de OpenClaw Academy, atualize para CoddyKit PRO. O curso de OpenClaw Academy inclui 4 aulas no total.

O que vou aprender em “Instale o CLI do OpenClaw”?

Instale globalmente com npm install -g openclaw@latest ou use o script de instalação curl de uma linha disponível na página inicial. Você pratica OpenClaw Academy com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.

Preciso ter experiência prévia para começar OpenClaw Academy?

Nenhuma experiência prévia é necessária. OpenClaw Academy no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 2 de 4.

Quanto tempo leva a aula “Instale o CLI do OpenClaw”?

A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.

Posso escrever e executar código nesta aula de OpenClaw Academy?

Sim. Cada aula de OpenClaw Academy inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.

Todas as aulas deste curso

  1. Verifique seus pré-requisitos
  2. Instale o CLI do OpenClaw
  3. Execute o assistente de integração
  4. Abra o painel local
← Voltar para OpenClaw Academy