Skip to main content

Install

  • Supported operating system: macOS, Linux, Windows(Windows Terminal).
  • Supported CPU architecture: arm64, amd64
Windows on Arm (arm64) is not yet supported.
You can install via: cURL
curl -fsSL https://qoder.com/install | bash
Homebrew (macOS, Linux)
brew install qoderai/qoder/qodercli --cask
NPM
npm install -g @qoder-ai/qodercli
After installation, run the following command. If it prints the CLI version, the installation was successful.
qodercli --version

Sign in

Authentication is required before use. The Qoder CLI will automatically prompt you to sign in the first time you execute a command.
# Start Qoder CLI in the terminal
qodercli

# In the interactive prompt, enter /login to log in
/login

Use

Now that you’re signed in, you can refer to Using CLI and learn how to use the Qoder CLI.

Upgrade

Automatic upgrade is enabled by default. You can also upgrade manually by the following these methods: cURL
curl -fsSL https://qoder.com/install | bash -s -- --force
Homebrew (macOS, Linux)
brew update && brew upgrade
NPM
npm install -g @qoder-ai/qodercli
Use the built-in update feature
qodercli update
To disable automatic upgrade, set autoUpdates to false in ~/.qoder.json.
{
  "autoUpdates": false,
  "...": "..."
}
I