Skip to main content
๐ŸŽ“ Claude Code Masterclass Learn AI-assisted development on Udemy โ€” plus the companion book on Leanpub & Amazon. Start Learning
Install kubectl on Windows
Platform Engineering

Install kubectl on Windows (Step-by-Step 2026)

Step-by-step guide to install kubectl on Windows. Copy-paste commands, verify installation, and configure for production.

LB
Luca Berton
ยท 1 min read

Here is how to install kubectl on Windows in 2026. Tested and verified.

choco install kubernetes-cli

Method 2: Winget

winget install -e --id Kubernetes.kubectl

Method 3: Direct Download

curl.exe -LO "https://dl.k8s.io/release/v1.31.0/bin/windows/amd64/kubectl.exe"
# Move kubectl.exe to a directory in your PATH

Verify

kubectl version --client

Enable PowerShell Completion

kubectl completion powershell | Out-String | Invoke-Expression
# Add to $PROFILE for persistence
kubectl completion powershell >> $PROFILE

Free 30-min AI & Cloud consultation

Book Now