🌐
Claude
claude.ai › public › artifacts › 8ad38c46-8b37-4f75-99ab-6f695ccac6f4
Complete Guide: Installing Claude Code on Windows 10
Claude Code doesn't work directly ... administrator" Click "Yes" when Windows asks for permission · In the black command window, type this exactly: wsl --install · Press Enter · Wait for it to download and install (this may take 10-20 minutes) When it's done, restart your ...
🌐
ClaudeLog
claudelog.com › home › install
Install Claude Code | ClaudeLog
Claude Code now supports native Windows installation via PowerShell or CMD (see Option 1 above).
🌐
Claude
code.claude.com › docs › en › setup
Set up Claude Code - Claude Code Docs
Install, authenticate, and start using Claude Code on your development machine. ... Operating Systems: macOS 10.15+, Ubuntu 20.04+/Debian 10+, or Windows 10+ (with WSL 1, WSL 2, or Git for Windows)
🌐
Claude
claude.ai › public › artifacts › d5297b60-4c2c-4378-879b-31cc75abdc98
Complete Claude Code Installation Guide for Windows | Claude
Windows 10 Build 19041+ or Windows 11 · Administrator privileges · Internet connection · At least 4GB free space on target drive · Open Environment Variables: Press Windows + R, type sysdm.cpl, press Enter · Click "Environment Variables" Clean User Variables: Select "Path" in User variables → Edit ·
🌐
Claude
claude.ai › public › artifacts › 5a119e06-02a1-4810-8681-ac7b1cf28e3e
Complete Claude Code Installation Guide for Windows 10
This comprehensive guide provides everything needed to successfully install and configure Claude Code on Windows 10.
🌐
Bind AI IDE
blog.getbind.co › 2025 › 08 › 26 › how-to-install-claude-code-cli
How to Install Claude Code CLI – Bind AI IDE
August 27, 2025 - Before installation, ensure your environment aligns with Claude Codes system requirements. The CLI supports macOS (10.15+), Linux (Ubuntu 20.04+/Debian 10+, Alpine for native builds), and Windows 10+ (via WSL or Git Bash).
🌐
Medium
medium.com › @eriktuck › install-claude-code-on-windows-d684ad9f3ef0
Definitive Guide to Installing Claude Code on Windows | by Erik Anderson | Medium
April 11, 2025 - I booted a brand new Windows machine and installed Claude Code from scratch so you can follow along. You must be running Windows 10 version 2004 and higher (Build 19041 and higher) or Windows 11 with admin privileges to install Claude Code.
🌐
iTechs Online
itecsonline.com › post › how-to-install-claude-code-on-windows
How To Install Claude Code on Windows: Complete Guide 2025 | Blog // ITECS
July 30, 2025 - This comprehensive guide walks Windows users through the complete process of installing Claude Code using WSL. It covers system requirements, pre-installation setup, detailed step-by-step instructions, troubleshooting common issues, and best practices for maximizing productivity.
🌐
Claude
claude.ai › public › artifacts › 03a4aa0c-67b2-427f-838e-63770900bf1d
Claude Code Installation Guide for Windows 11
Before installing Claude Code on Windows 11, you'll need to set up a Linux environment through WSL2. The tool requires Node.js 18+ (LTS recommended), npm 10+, and WSL2 with Ubuntu 20.04+ or Debian 10+. Windows Terminal or an equivalent terminal emulator is recommended for the best experience.
Find elsewhere
🌐
Reddit
reddit.com › r/claudeai › install claude code on windows without wsl
r/ClaudeAI on Reddit: Install claude code on windows without WSL
June 16, 2025 -

Step 1: Open cmd

Open cmd as administrator

Step 2: Set NPM configuration, telling npm to ignore executing scripts in packages during installation (e.g., preinstall, postinstall, etc.)

setx NPM_CONFIG_IGNORE_SCRIPTS true

$env:NPM_CONFIG_IGNORE_SCRIPTS = “true”

Step 3: Configure the SHELL environment variable

setx SHELL "C:\Program Files\Git\bin\bash.exe"

Step 4: Install Claude Code

npm install -g @anthropic-ai/claude-code

Step 5: Add to Environment Variables

Add this line to your environment variables: C:\Users\y.xie\.npm-global

Step 6: Restart the development environment

Restart CMD or your IDE (e.g., VS Code, IntelliJ IDEA), then log in to your Claude Code account or configure the API directly within the application to start using it.

Supplementary Notes

  • Ensure Git for Windows is installed, with the path being C:\Program Files\Git\bin\bash.exe.

  • If the Git installation path is different, please adjust the SHELL environment variable path accordingly.

  • The path C:\Users\y.xie\.npm-global should also be added based on your actual path.

  • It is recommended to set these variables permanently to avoid having to reconfigure after each restart.

  • Later, if you want to uninstall and revert the changes from Step Two and Step Three, just execute setx NPM_CONFIG_IGNORE_SCRIPTS false and setx SHELL "".

🌐
Smartscope
smartscope.blog › en › generative-ai › claude › claude-code-windows-native-installation
Claude Code Windows Install: No WSL Required (3min PowerShell Setup) - SmartScope
Native Windows Claude Code installation in 3min. No WSL, runs in PowerShell. Auto Node.js/Git setup, clipboard image paste fix. Step-by-step guide 2025.
🌐
Medium
medium.com › ai-insights-cobet › comprehensive-guide-to-setting-up-claude-code-on-windows-using-wsl-d3a3f3b5a128
Comprehensive Guide to Setting Up Claude Code on Windows Using WSL | by azhar | azhar labs | Medium
March 27, 2025 - Setting up Claude Code, Anthropic’s AI-driven coding assistant, on a Windows system involves leveraging the Windows Subsystem for Linux (WSL). This approach ensures compatibility and a seamless development experience. Below is a comprehensive guide to installing and configuring Claude Code on your Windows machine
🌐
Reddit
reddit.com › r/claudeai › this is how i managed to run claude code on windows with proper ide support
r/ClaudeAI on Reddit: This is how I managed to run Claude Code on Windows with proper IDE support
June 10, 2025 -

Hello,

I was struggling to get Claude Code working on Windows with my .NET projects while maintaining proper IDE support. The core problem is that Claude Code requires WSL to run on Windows. If you copy your project files into a WSL folder, you lose crucial IDE integration.

Here's the correct way to do it without copying your code into a WSL folder (if you weren't already aware, like me!):

  1. Open your favorite IDE and your project.

  2. Open the terminal within your IDE.

  3. Navigate to your project directory (e.g., C:\MyProject).

  4. Type the following command: wsl claude

Enjoy!

🌐
Reddit
reddit.com › r/claudeai › made claude code work natively on windows
r/ClaudeAI on Reddit: Made Claude Code work natively on Windows
July 7, 2025 -

Just shipped win-claude-code - a wrapper that lets you run Anthropic's Claude Code directly on Windows without WSL.

npm install -g anthropic-ai/claude-code --ignore-scripts
npx win-claude-code@latest

That's it. Works with PowerShell, CMD, Windows Terminal - whatever you prefer.

Built this because I got tired of WSL setup just to use Claude Code. Figured other Windows devs might find it useful too.

GitHub: https://github.com/somersby10ml/win-claude-code

Would love feedback if anyone tries it out! 🚀

🌐
Medium
jewelhuq.medium.com › install-wsl-claude-code-on-windows-complete-guide-2025-873bd4a29478
Install WSL & Claude Code on Windows — Complete Guide 2025 | by Md Mazaharul Huq | Medium
July 23, 2025 - Step-by-step tutorial to enable WSL on Windows, isolate Node.js with NVM, install Anthropic’s Claude Code CLI, and start coding with AI in your terminal.
🌐
Medium
medium.com › @WalterSchaerer › from-zero-to-prompting-setting-up-claude-code-on-your-windows-machine-710a32785bee
From Zero to Prompting: Setting Up Claude Code on Your Windows Machine | by Walter Schärer | Medium
July 18, 2025 - Below is a step-by-step guide to get started on Microsoft Windows (on iOS and Linux Claude Code runs natively, you don’t need the WSL step). To begin, enable WSL by opening your Windows PowerShell (cmd) as administrator and running the command ... This will install Ubuntu by default and may require a system restart.