Skip to content

Windows Setup for Power Users

Most practitioners don't need this page

If you just want to run workflows, open claude.ai in any browser — nothing to install. This page is for builders/power users who want Claude Code (and optionally other CLI assistants) running locally on Windows. See Power Users: Claude Code & Cowork for the full picture.


What You'll Install

Tool Purpose
WinGet Microsoft's package manager for quick terminal installs
PowerShell 7 Modern terminal with better features
Node.js / NPM Runtime for Claude Code (and other CLI assistants)
UV / UVX Fast Python package installer (like pip, but faster)
Claude Code Anthropic's CLI coding assistant

Step 1: Install Prerequisites

Open PowerShell as Administrator

  1. Click Start Menu
  2. Search for PowerShell
  3. Right-click → Run as Administrator

Enable Script Execution

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser

Install Node.js and UV

winget install OpenJS.NodeJS astral-sh.uv

WinGet not recognized?

If WinGet isn't available, install it first:

Install-Module -Name Microsoft.WinGet.Client

Upgrade to PowerShell 7

winget install --id Microsoft.PowerShell --source winget

Restart Required

Close and reopen PowerShell after installation. Verify you're running PowerShell 7 by checking the window title.


Step 2: Install AI Coding Assistants

Claude Code (Anthropic)

irm https://claude.ai/install.ps1 | iex

Desktop App Available

Prefer a desktop app? Download Claude Desktop at https://claude.ai/download

Already using OpenCode?

It auto-discovers Claude Code plugins automatically — no extra setup needed.

Gemini CLI (Google)

npm install -g @google/gemini-cli

Codex (OpenAI)

npm install -g @openai/codex

Step 3: Verify Installation

Run each command to start a chat session:

claude # Anthropic Claude Code gemini # Google Gemini codex # OpenAI Codex

You can log in to each with your existing Google, Anthropic, or OpenAI accounts.

### Claude Health Check

```powershell
claude doctor
claude migrate-installer
  • doctor checks your setup for issues
  • migrate-installer ensures you're using the latest installation method

Terminal Tips

Split Your Terminal

Right-click on your terminal window to split into panels and run 2+ AI chats simultaneously!

Common Commands

Command What it does
cd folder Change directory
cd .. Go up one folder
ls or dir List files
cls or clear Clear screen
exit Close terminal

Quick Navigation

  • Tab - Auto-complete file/folder names
  • Up Arrow - Previous command
  • Ctrl+C - Cancel current operation

Troubleshooting

"Command not recognized"

After installing Node.js or other tools, you may need to:

  1. Close and reopen PowerShell
  2. Or reboot your PC

MCP Server Issues

When in doubt, exit completely! A full exit restarts Claude's MCP servers and often fixes connection issues.

Still Stuck?

See our Troubleshooting Guide for more solutions.


Next Steps

Once installed, head to the Quickstart Guide to run your first Seer Marketing Agent workflow!