Install Git, GitHub CLI, and Claude Desktop on Windows
A step-by-step guide for people who have never used a terminal. Take your time and follow the steps in order.
Duration
About 45 to 70 minutes.
You will need
Your email, your computer password, and an internet connection.
Main tool
PowerShell, opened from Start menu -> type PowerShell -> Enter.
Simple rules to avoid mistakes
- Only download software from the official links shown in this tutorial.
- Copy commands exactly, without adding a period, quote, or leading space.
- If a step takes a while, wait. Many installers stay quiet for several minutes.
- If you get lost, close the window, breathe, then go back to the previous step.
Step 1
Prepare Windows and open PowerShell
Do not worry
- Click the Start button at the bottom of the screen.
- Type PowerShell.
- Click Windows PowerShell. A text window opens.
- If Windows asks for permission, click Yes only if the displayed name is Microsoft or the official installer.
Do not worry
PowerShell is a normal Windows tool, like Control Panel, but in text mode.
Step 2
Install Winget from the Microsoft Store
Do not worry
- Open this Microsoft Store page.
- Click Get or Install. The app may appear as App Installer.
- If Microsoft Store says the app is already installed or up to date, you are good.
In PowerShell, check that Winget responds:
winget --versionStep 3
Install Git for Windows
Do not worry
In PowerShell, copy and paste this command, then press Enter:
winget install --id Git.Git -e --source winget- If Winget asks you to accept terms, type Y, then press Enter.
- If a Git wizard opens, click Next without changing the options.
- Continue to the end, then click Install or Finish.
Important point
If you see words like PATH, Vim, OpenSSH, or line endings, do not change anything. Just click Next.
Close PowerShell if it is already open, then reopen it. Then type:
git --versionStep 4
Install GitHub CLI with winget
Do not worry
In PowerShell, copy and paste this command, then press Enter:
winget install --id GitHub.cli --source winget- If a question asks you to accept terms, type Y, then press Enter.
- Wait for the installation-complete message.
- Close PowerShell completely, then reopen it.
Check the installation:
gh --versionStep 5
Create a GitHub account
Do not worry
- Go to https://github.com/.
- Click Sign up.
- Enter your email address.
- Choose a strong password.
- Choose a simple username, for example firstname-lastname.
- Verify your email address with the code sent by GitHub.
Security tip
Enable two-factor authentication if GitHub offers it.
Step 6
Authenticate GitHub CLI with HTTPS
Do not worry
In PowerShell, type:
gh auth login --web --git-protocol https- Choose GitHub.com if the question appears.
- Choose HTTPS if the question appears.
- GitHub CLI displays a code. Copy it or write it down.
- Your browser opens. Log in to GitHub if needed.
- Paste the requested code, then click the authorization button.
Check that everything is OK:
gh auth statusStep 7
Install Claude Desktop on Windows
Do not worry
- Go to https://claude.com/download.
- Click Windows.
- Open the downloaded file.
- Follow the installation.
- Open Claude from the Start menu.
- Log in with your Claude account, or create one.
Important point
Claude Desktop requires Windows 10 or newer.
Final checklist
Official sources
These instructions are based on the official documentation for Git, GitHub CLI, GitHub, and Claude Desktop.