Running AI on your own computer – not through a cloud API – used to mean setting up Python environments, wrestling with CUDA versions, and spending an afternoon reading error logs. In 2026, it's dramatically simpler. You can install a tool, run a command, and be chatting with a local model in under five minutes.
This guide walks through the whole process: what hardware you actually need, which software to install, which model to pick, and what to do after you've got it running. If you're new to local AI, this is the only guide you'll need.
What you need: hardware
The most important thing for local AI is memory – specifically, how much of the model fits in RAM or VRAM at once. The model's weights need to be loaded before it can run, and the quality of the model is roughly proportional to its size.
Here's a quick rule of thumb:
- 8 GB RAM – runs 1–3B parameter models at 4-bit. Useful for basic chat, limited reasoning. Runs on most laptops and phones.
- 16 GB RAM – runs 7B models at 4-bit. This is the sweet spot for a laptop. Good quality, good speed on CPU via llama.cpp.
- 32 GB RAM – runs 13B models at 4-bit, or 7B at 8-bit. This is where the model starts to feel genuinely smart.
- 64 GB+ RAM – runs 32B or 70B models at 4-bit. This is workstation territory or a unified-memory AI desktop.
A GPU helps enormously, but it's not required. If you have a GPU, you need enough VRAM to hold the model. Run your numbers through the LLM VRAM Calculator to see what fits your card. If you're shopping for a GPU, the best GPU for local LLMs guide has the full breakdown.
For most people starting out, the simplest path is: use what you already have. Your existing laptop with 16 GB RAM can run a 7B model at conversational speed. If you decide you want more, then you can upgrade.
Step 1: Install Ollama
Ollama is the single best tool to start with. It wraps model downloading, quantization, and the inference engine into one command-line tool, and it works on Linux, macOS, and Windows. It handles GPU acceleration automatically when it detects an NVIDIA GPU, AMD GPU, or Apple Silicon.
On Linux/macOS:
curl -fsSL https://ollama.com/install.sh | sh
On Windows: download the installer from ollama.com/download and run it.
That's it. After installation, Ollama runs as a background service and you can start pulling models.
Step 2: Pick and download a model
Ollama has a large library of models you can pull by name. For a first-time setup, here are the best options based on your hardware:
- 8–16 GB RAM:
ollama pull llama3.2:3borollama pull qwen2.5:7b - 16–32 GB RAM:
ollama pull llama3.1:8borollama pull mistral:7b - 32–64 GB RAM:
ollama pull qwen2.5:14borollama pull llama3.3:70b
If you're not sure, start with ollama pull llama3.2:3b – it's small,
fast, and will run on almost anything. You can pull larger models later.
Step 3: Chat with it
Once the model is downloaded, just run:
ollama run llama3.2:3b
You'll get a terminal prompt where you can type messages. It's that simple. Type
/bye to exit.
For a better experience, install a web UI. Ollama ships with a built-in API, and several community UIs will auto-detect it:
- Open WebUI – the most polished. Runs in Docker or directly. Go to openwebui.com.
- Ollama Web UI – lighter, no Docker needed:
ollama run llama3.2:3bthen openhttp://localhost:11434in your browser.
For tips on getting better answers, see the how to write better prompts guide.
Step 4: What to do next
Once you have a local model running, the real fun starts. Here's what you can do with it:
- Local chat assistant – keep it running as a private alternative to ChatGPT. No data leaves your computer, no subscription.
- Summarize articles and documents – paste in text and get a concise summary. Works offline, no copy-paste limits.
- Write and edit code – Ollama works with VS Code extensions, terminal tools, and the built-in API for custom automation.
- Build a local RAG system – index your own files (notes, PDFs, emails) and ask questions across them. Tools like llama.cpp and LlamaIndex make this approachable.
- Run an AI agent – with the new unified-memory machines, you can run agents that browse the web, use tools, and act on your behalf, all locally.
If you hit problems
Most issues come down to memory. If the model doesn't start or runs very slowly:
- Try a smaller model – the 3B model is shockingly capable for its size and will run on a 2019 laptop.
- Check your RAM usage – if your system has 16 GB total, a 7B model at 4-bit needs about 4 GB, leaving 12 GB for the OS and other apps. That's fine, but if you have 8 GB, you'll need to close other apps.
- Use a GPU – if you have an NVIDIA or AMD GPU, Ollama will use
it automatically. Run
ollama psto verify. - CPU-only is fine – a 7B model on a modern CPU runs at about 5–10 tokens per second. That's readable, not instant, but perfectly usable for chat and summarization.
For more detailed help, the Ollama GitHub repo has excellent documentation.
Bottom line
Local AI in 2026 is simple: install Ollama, pull a model, and start chatting. You don't need a $3,000 GPU or a degree in machine learning. A 16 GB laptop with a 7B model is enough to feel the real power of local AI – privacy, no subscription, no limits.
Once you're comfortable, explore larger models, try a GPU, or build a dedicated local AI machine using the DGX Spark, RTX Spark, or a Ryzen AI Max mini PC. The door is open, and it costs almost nothing to walk through.