Claude Code
Beginner's Guide
No coding experience needed — written for complete beginners
Shared by Jazz
Three Ways to Use Claude
Pick the one that fits you
claude.ai
Web version, simplest
Open a browser and start chatting
Claude Desktop
Desktop app
Download, install, use daily
Claude Code
Runs in your terminal
Can directly manipulate files on your computer
This guide's focus
Never written code before? That's fine! This guide is made for you
What is Claude Code?
A way to control your computer by typing natural language
What's a "Terminal"?
It's a text-only window built into your computer — think of it as a "text-based control center."
Mac: Press Cmd + Space, search for Terminal.
Windows: Search for PowerShell or Command Prompt.
- You describe what you want in plain English
- Claude reads, edits, and creates files for you
- It can even write and run code on your behalf
What Does It Look Like?
Just a text window where you type and it responds
You> I have three Excel files on my desktop, merge them into one
Claude> Sure, let me check your desktop...
Found 3 Excel files:
- january-sales.xlsx
- february-sales.xlsx
- march-sales.xlsx
I'll merge all three into a single file.
Should I go ahead? (Y/n)
You> Y
Claude> Done! Saved to "sales-merged.xlsx"
That simple — describe what you need, and it does it
Who Is This For?
It's not just for programmers
Professor
"Merge these 100 CSV grade files and calculate each student's average"
Airline Ground Crew
"Build an auto-scheduler that prevents anyone from working 3 night shifts in a row"
Financial Analyst
"Fetch daily stock prices automatically and alert me if any move more than 5%"
Hospital Admin
"Extract data from these PDF reports and organize them into an Excel spreadsheet"
E-commerce Ops
"Compare inventory against orders and flag items that are running low"
Journalist / Researcher
"Scrape public data from these 50 websites and organize it into a structured table"
Common thread: repetitive work + data processing = Claude Code's sweet spot
Installation: Just Follow Along
Install Node.js (if you haven't already)
Go to nodejs.org, download, and click "Next" through the installer
Open your terminal
Mac: Press Cmd + Space and search "Terminal"
Windows: Search for "PowerShell"
Paste these three commands
# Install Claude Code (paste and hit Enter)
npm install -g @anthropic-ai/claude-code
# Log in (opens your browser automatically)
claude login
# Start using it!
claude
Cost: Requires an Anthropic account (Claude Pro $20/mo or Max $100/mo)
Your First Conversation: Start Small
Don't jump straight to "build me a complete system"
Ask a question
What files are in this folder?
Simple task
Make the second column of this Excel all uppercase
File processing
Extract the table from this PDF and save it as Excel
Start with small tasks to build trust — once it gets those right, give it bigger ones
Mindset Shift
Think of it as a brilliant assistant who doesn't know your context yet
Claude is great at...
- Processing files and data
- Writing code and doing calculations
- Automating repetitive tasks
But it needs you to...
- Be specific about what you want
- Provide context (why you need this)
- Verify results (don't blindly trust)
Imagine you hired someone extremely capable, but it's their first day — give them background and goals, and they'll deliver great work.
How to Talk to Claude Effectively
Vague
Help me organize my data
What data? Where is it? What should the result look like? Claude can only guess
Specific
I have "client-list.xlsx" on my desktop.
Split it by the "Region" column
and save each region as a separate Excel file
File name, goal, expected output — all clear
Tip: Talk to it like you'd brief a real human assistant
Even Better: Give Context
I want to build a tool that automatically organizes client billing data
Background:
- I spend 2 hours every month organizing invoices manually
- It's tedious and error-prone
- I have no programming experience
Requirements:
- I'll upload a CSV file (the invoice)
- Show me the top 10 highest-cost items
- Save the result as a new Excel file
Don't start building yet — first tell me your approach.
- Explained why (2 hours/month is painful)
- Stated your level (no programming experience — Claude will adapt)
- Asked it to explain before acting (prevents going in the wrong direction)
Common Pitfalls
No context given
Tell Claude where your files are and what they look like first
Requirements too vague
Think it through first. If unsure, ask Claude to ask you questions
Not checking results
Open the output and spot-check a few numbers
Asking for too much at once
Break it into small steps. Finish one, verify, then move on
Tips That Get Better Over Time
Let it explore your files first
Show me what's in this folder — let it understand what you're working with
Ask it to explain before acting
Tell me your plan first, and I'll approve before you start
Ask when you don't understand
What's a CSV? Can you explain? — keep asking until it clicks
When something breaks, just paste the error
You don't need to understand the error — just say I got an error: ___, please fix it
Errors Are Normal
Working with computers = a constant cycle of trying and fixing
This loop may repeat several times — totally normal
Wrong mindset
"It broke, I'm clearly not cut out for this"
Right mindset
"It broke — let me paste the error and let Claude fix it"
The goal isn't getting it right the first time — it's letting Claude help you iterate until it's right
Claude Code won't replace you,
but people who use Claude Code
will outpace those who don't.
Try It Now
- Install it and play around for 30 minutes
- Start with "Show me what files are on my desktop"
- See an unfamiliar term? Just ask
- Made a mistake? No worries — Claude will help you fix it
Questions? Reach out to Jazz anytime
Use arrow keys to navigate