Which "DeepSeek" do you mean?
This matters more than it sounds. "DeepSeek" on its own usually refers to the full DeepSeek-R1 or DeepSeek-V3-class models, which are enormous mixture-of-experts models built for data-center hardware, not a home GPU. What most people running DeepSeek locally actually use are the R1-Distill models: smaller, dense models distilled from R1's reasoning ability onto existing open architectures. A DeepSeek-R1-Distill-14B, for example, is trained on top of Qwen2.5-14B's actual architecture, not a separate DeepSeek design. That's the version this guide covers.
Real numbers by size
| Model | Q4 VRAM | Realistic minimum GPU |
|---|---|---|
| R1-Distill-Qwen-1.5B | ~2.3 GB | Any GPU with 4GB+ |
| R1-Distill-Llama-8B | ~6 GB | RTX 4060 8GB |
| R1-Distill-Qwen-14B | ~9.6 GB | RTX 4070 12GB |
| R1-Distill-Qwen-32B | ~22.9 GB | RTX 4090 24GB |
| R1-Distill-Llama-70B | ~49.1 GB | Mac Studio 64GB (unified memory) |
These figures come from this site's own calculator formula, not a static table copied from elsewhere: parameter count times bytes-per-weight at Q4_K_M, plus real per-token context memory pulled from each model's actual architecture (the R1-Distill-14B and R1-Distill-32B rows use the exact same architecture data as the Qwen 14B and Qwen 32B entries in the hardware calculator, since that's genuinely what they're built on).
Why other sources disagree so much
A few reasons show up repeatedly when different guides give different numbers for the same model:
- Some are quoting the full model, not a distill. "24GB minimum" figures often describe running something closer to full R1, not the 7B or 14B distills most people actually run at home.
- Some don't specify quantization. FP16 and Q4 numbers for the same model differ by roughly 3.5x. A table without a quantization column is missing the single most important variable.
- Some are simply old. Model releases and community consensus on "recommended" hardware shift fast in this space; a guide written months ago may describe an earlier distill lineup.
Running it
The fastest path is the same as any other model: install Ollama, then pull the size that fits your hardware.
Swap the size for whatever fits per the table above. See the full beginner guide if you haven't installed Ollama yet.