Technical Prerequisites & Setup Guide - Start from Zero
Start from Zero - No Experience Needed
The final piece of the puzzle: getting your computer ready for AI. This chapter covers everything from checking if your current setup works to installing software step-by-step. If you can use a web browser, you can do this.
✅ Basic Computer Skills Checklist
MUST HAVE:
- ✓Can type 20+ words per minute
- ✓Know how to copy and paste (Ctrl+C, Ctrl+V)
- ✓Can install programs
- ✓Can browse websites
- ✓Can create folders and files
- ✓Can send emails
NICE TO HAVE:
- ○Know keyboard shortcuts
- ○Can use Google effectively
- ○Comfortable with downloads
- ○Can zip/unzip files
- ○Basic spreadsheet skills
Quick Skills Test (Can You Do These?)
- Create a new folder on desktop
- Save a web page as PDF
- Take a screenshot
- Find a file you downloaded
- Copy text from web to document
You're ready!
10-minute tutorials on YouTube
💻 Is My Computer Good Enough?
For Online AI (ChatGPT, Claude, etc.)
- 2GB RAM (any smartphone has this)
- Any processor
- Internet connection
- Web browser
For Basic Local AI (7B models)
- 8GB RAM (16GB much better)
- 100GB free disk space
- Graphics card with 6GB VRAM (optional but 10x faster)
- Windows 10/11 or Mac from 2015+
- • Used Dell/HP office PC: $200
- • Add graphics card GTX 1660: $200
- • Add more RAM: $50
For Serious Local AI (13B+ models)
- 32GB RAM
- 500GB free space
- Graphics card with 12GB+ VRAM
- Modern processor (last 5 years)
🔍 Quick Computer Check
Windows (PC):
- Right-click "This PC"
- Click "Properties"
- Look for:
- Processor: (anything from last 10 years OK)
- RAM: 8GB minimum, 16GB better
- System type: 64-bit (important!)
Mac:
- Apple menu → About This Mac
- Look for:
- Memory: 8GB minimum
- Processor: Any Apple Silicon (M1/M2) great
- Intel Macs from 2015+ also work
📁 Understanding File Types and Formats
AI Model File Formats Explained
Modern format for running AI locally. Works with Ollama, LM Studio.
Example: llama-2-7b-chat.Q4_K_M.gguf
Safe, efficient format. Prevents code execution exploits.
Example: model.safetensors
Older PyTorch format. Still widely used.
Example: pytorch_model.bin
Another PyTorch format for model weights.
Example: model_checkpoint.pth
Common AI File Types You'll See
Plain text (simplest format)
Data format for AI configs
Spreadsheet data for training
Markdown for documentation
Python code files
Jupyter notebooks (AI tutorials)
Where AI Stores Files
C:\Users\[YourName]\.cache\huggingface\ = Downloaded models
C:\Users\[YourName]\AppData\Local\LM Studio\ = LM Studio files
~/.cache/huggingface/ = Downloaded models
~/Library/Application Support/LM Studio/ = LM Studio files
Models are 4-40GB each! Check disk space.
💻 Command Line Basics (Only Essentials)
Windows Command Prompt
- Press Windows key
- Type: cmd
- Press Enter
cd Desktop
Go to Desktop folderdir
List files in foldermkdir NewFolder
Create new foldercd ..
Go up one foldercls
Clear screenpython script.py
Run Python scriptdel file.txt
Delete a filecopy file.txt backup.txt
Copy filetype file.txt
Show file contentsexit
Close windowMac/Linux Terminal
Mac: Cmd+Space, type "Terminal"
Linux: Ctrl+Alt+T
cd Desktop
Go to Desktopls
List filesmkdir NewFolder
Create foldercd ..
Go up one folderclear
Clear screenpython3 script.py
Run Python scriptrm file.txt
Delete filecp file.txt backup.txt
Copy filecat file.txt
Show file contentsexit
Close terminal⚠️ Golden Rules for Command Line Safety
- 1.Never run commands you don't understand
- 2.Read what it does first - Google unfamiliar commands
- 3.Check the source is trusted - Don't copy from random websites
- 4.Start with simple commands - Learn basics first
- 5.Google error messages - Someone else had same issue
Why Command Line Matters for AI:
Many AI tools use command line because it's faster and more powerful than clicking buttons. Once you know 10 basic commands, you can do anything!
⚙️ Software Setup Walkthrough
Python Installation
- Go to: python.org
- Download: Windows installer (64-bit)
- IMPORTANT: Check "Add Python to PATH" box
- Click: Install Now
- Test: Open Command Prompt, type:
python --version
- Mac already has Python! Open Terminal
- Type:
python3 --version
- If old version, download latest from python.org
Git Installation (For Downloading AI Projects)
- Go to: git-scm.com
- Download: Windows installer
- Install: Just click Next on everything (defaults are fine)
- Test: Command Prompt, type:
git --version
- Open Terminal
- Type:
git --version
- Mac will prompt to install if missing - click Install
Ollama Installation (Full Walkthrough)
- Go to: ollama.ai
- Click Download for your OS
- Install like any normal program
- Open Command Prompt/Terminal
- Type:
ollama run llama2
- Wait for download (4GB) - takes 5-10 minutes
- Start chatting with AI!
• Command: ollama list
- See installed models
• Command: ollama run phi
- Try smaller model (1.3GB)
• Command: ollama stop
- Stop running model
• Type /bye
in chat to exit
LM Studio (Easiest for Beginners)
- Go to: lmstudio.ai
- Download for Windows/Mac/Linux
- Install like any program
- Open LM Studio
- Click "Search" tab
- Search for "phi-2" (small, fast model)
- Click Download
- Click "Chat" tab
- Select your model and start chatting!
Why LM Studio is Great:
GUI (graphical interface) - no command line needed! Perfect for beginners.
💰 Budget Hardware Options
The $0 Stack (Use What You Have)
- Go to: colab.research.google.com
- Create new notebook
- Runtime → Change runtime → GPU
- Free GPU for AI experiments!
4 hour sessions, then restarts. But it's FREE!
The $200 Stack (Minimal Upgrade)
- • Used Dell OptiPlex 7040 (i5, 8GB RAM):$100
- • GTX 1650 4GB graphics card (used):$100
7B models slowly. Good for learning!
The $500 Stack (Solid Performance)
LOOK FOR:
- • GTX 1070 or better (8GB VRAM)
- • 16GB RAM minimum
- • 500GB SSD
- • Any processor from last 7 years
Most 7B-13B models well. Great for serious learning!
The $1000 Stack (Power User)
- • CPU: AMD Ryzen 5 5600:$150
- • GPU: RTX 3060 12GB (used):$350
- • RAM: 32GB DDR4:$100
- • Motherboard, Case, PSU, SSD:$400
Everything except huge 70B+ models. Professional AI workstation!
🆘 Getting Help When Stuck
Best Resources:
Search: "[Your Problem] tutorial 2024"
r/LocalLLaMA (friendly community for local AI)
Hugging Face, LM Studio official servers
Put error message in quotes for exact match
"How do I fix [error]?" - AI helps debug AI!
How to Ask for Help:
- Your computer specs (OS, RAM, GPU)
- What you're trying to do
- Exact error message (copy-paste)
- What you already tried
"Windows 11, 16GB RAM, trying to run Llama-7B in Ollama. Getting 'out of memory' error. Already tried restarting and closing programs. Help?"
Don't Be Afraid to Ask!
Every AI expert was once a beginner asking "dumb" questions. The community is surprisingly helpful!
⏰ Your First Hour Action Plan
Check your computer specs (RAM, disk space)
Go to ChatGPT.com, create free account, try it
Download LM Studio from lmstudio.ai
Install LM Studio (like any program)
Download "Phi-2" model in LM Studio (small, fast)
Ask it same question as ChatGPT, compare!
CONGRATULATIONS: You're now running AI locally!
🔧 Troubleshooting Common Problems
Problem 1: "Python not recognized"
❌ ERROR:
'python' is not recognized as an internal or external command
✅ SOLUTIONS:
- Reinstall Python, CHECK "Add Python to PATH" box during installation
- Restart your computer after installation
- Try
python3
instead ofpython
- Manual PATH fix: Search "Environment Variables" → Edit PATH → Add Python folder
Problem 2: "Out of memory"
❌ ERROR:
Error: Out of memory / Killed / Process terminated
✅ SOLUTIONS:
- Use smaller model: Try 3B model instead of 7B
- Close all other programs (browser, apps, etc.)
- Restart your computer to free up memory
- Check model size vs your RAM: 7B models need 8GB+ RAM
- Consider upgrading RAM if running many AI tasks
Problem 3: "Model won't download"
✅ SOLUTIONS:
- Check your internet connection is stable
- Check disk space: You need 2x the model size free (7B model = ~14GB needed)
- Try a different smaller model first
- Use VPN if you're in a restricted region
- Download manually from Hugging Face website if needed
Problem 4: "Everything is slow"
Without GPU (CPU only):
1-2 words/second is NORMAL
This is expected behavior
With GPU:
10-30 words/second expected
Much faster performance
TO SPEED UP:
- Check if GPU is being used (look for CUDA/ROCm in logs)
- Update graphics drivers to latest version
- Use smaller quantized models (Q4_K_M or Q5_K_M)
- Close background programs and browser tabs
Problem 5: "Can't install software"
✅ SOLUTIONS:
- Check if you have administrator rights on the computer
- Disable antivirus temporarily (re-enable after install)
- Right-click installer → "Run as Administrator" (Windows)
- Check disk space: Need at least 10GB+ free space
- Download fresh installer file (previous one may be corrupted)
Problem 6: GPU not detected
- Update NVIDIA/AMD drivers
- Check CUDA or ROCm is installed
- Verify GPU compatibility with AI tools
- Check GPU shows in Device Manager (Windows)
Problem 7: "Command not found"
- Check PATH environment variable
- Close and restart terminal/command prompt
- Restart computer
- Reinstall software if problem persists
💡 Pro Troubleshooting Tips:
- •Copy exact error message and Google it - someone else has solved it
- •Restart is the first solution for 60% of problems
- •Check if problem exists with simpler/smaller model first
- •Join r/LocalLLaMA on Reddit - friendly community that helps beginners
🎯 The "Am I Ready?" Final Checklist
ABSOLUTE REQUIREMENTS:
- ✓Computer with internet
- ✓Can follow instructions
- ✓Willing to try things
- ✓OK with things not working sometimes
YOU DON'T NEED:
- ✗Programming knowledge
- ✗Math understanding
- ✗Expensive computer
- ✗Technical background
IF YOU CAN:
THEN YOU CAN: Use AI tools!
Key Takeaways
- ✓Any computer with internet works for online AI (ChatGPT, Claude)
- ✓8GB RAM minimum for running AI locally, 16GB much better
- ✓60-minute setup plan gets you from zero to running local AI
- ✓LM Studio is easiest for beginners - just download and go
- ✓Common problems have simple solutions - restart, check space, use smaller models
- ✓No programming needed - if you use Facebook, you can use AI
- ✓Every AI expert started exactly where you are - the only difference? They started
COURSE COMPLETE!
You're Now an AI Master!
27 chapters. From complete beginner to complete mastery. You now understand AI fundamentals, can use every major tool, build applications, stay safe, make money, and know when NOT to use AI. This is comprehensive expertise.
What You've Mastered:
How AI works, models, training, prompting
Every major tool, local AI, building apps
How to earn $100 to $10K/month
Spot fakes, avoid scams, protect data
What AI can't do, when not to use it
Setup, troubleshooting, optimization
Certificate of Mastery
This certifies that you have completed
The AI Complete Guide
27 comprehensive chapters covering everything from basics to mastery
"The journey from curiosity to mastery is complete. You started not knowing what AI truly was. Now you can build with it, earn from it, and teach others about it. That's extraordinary growth."
— The AI Complete Guide
What's Next?
Build Something
Use your new skills to create an AI project that matters to you
Start Earning
Apply the monetization strategies from Chapter 26
Keep Learning
AI evolves rapidly - stay updated with our resources
Teach Others
Share your knowledge - teaching reinforces learning
You Did It!
Now go build something amazing. The AI revolution is here, and you're equipped to lead it.