---
title: "Installing Cline"
description: "Choose your installation path: IDE Extension, CLI, SDK, or Kanban"
---
## Choose Your Install Path
- [IDE Extension](#ide-extension) — VS Code, Cursor, JetBrains, Windsurf, VSCodium, Antigravity
- [CLI](#cli) — terminal workflows
- [Kanban](#kanban) (preview) — easily manage through multiple agents through a kanban board
- [SDK](#sdk) — build with `@cline/sdk`
## IDE Extension
Use this if you want Cline inside your editor UI.
Press `Ctrl/Cmd + Shift + X`.
Type `Cline`.
Click **Install** on the Cline extension.
Use the Cline activity bar icon, or run `Cline: Open In New Tab` from Command Palette.
After installing the extension, complete provider setup in Cline settings. Use the Cline Provider for pay-as-you-go access, ClinePass for a flat monthly subscription, or bring your own provider key.
[Authorize with Cline](/getting-started/authorizing-with-cline)
Windsurf and VSCodium use Open VSX. The install flow is the same.
**Settings** → **Plugins** → **Marketplace**.
Search `Cline`, click **Install**, then restart the IDE.
**View** → **Tool Windows** → **Cline**.
After installing the extension, complete provider setup in Cline settings. Use the Cline Provider for pay-as-you-go access, ClinePass for a flat monthly subscription, or bring your own provider key.
[Authorize with Cline](/getting-started/authorizing-with-cline)
Alternative: install from the [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/28247-cline).
## CLI
Use this if you want Cline in terminal workflows (interactive + automation).
Install Node.js 20+ (22 recommended).
```bash
npm install -g cline
```
```bash
cline auth
```
```bash
cline
# or
cline "your task"
```
More details: [CLI Installation & Setup](/usage/cli-overview)
## Kanban
Use this if you want task-board workflows with agent execution.
Install Node.js 18+.
```bash
npx kanban
```
More details: [Kanban](/usage/kanban)
## SDK
Use this if you are building your own app/agent on top of Cline.
```bash
mkdir my-agent && cd my-agent
npm init -y
```
```bash
npm install @cline/sdk
```
Browse SDK examples to run your first agent.
Start here: [SDK Examples](/sdk/examples)
## Need Help?
- [Troubleshooting](/troubleshooting/networking-and-proxies)
- [Discord community](https://discord.gg/cline)