Skip to content

Claude Code Deployment Guide

ResourceURL
Official docsClaude Code Quickstart

Claude Code is Anthropic's coding tool for working inside local project folders from the terminal. The recommended install path is Native Install, then launch it with claude.

Windows

PowerShell:

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

CMD:

bat
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

WinGet:

powershell
winget install Anthropic.ClaudeCode

On native Windows, Git for Windows is recommended so Claude Code can use common Bash tools; otherwise it falls back to PowerShell.

macOS

Official install script:

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

Homebrew:

sh
brew install --cask claude-code

Linux / WSL

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

Verify And Start

sh
claude --version
cd /path/to/your/project
claude

Follow the terminal prompts on first launch.

Next Steps