Can I run Mistral 7B?
Mistral 7B by Mistral AI needs around 8 GB of RAM at the recommended 4-bit quantization (4.4 GB download). Your hardware is checked below β instantly, nothing leaves your browser. Expect roughly ~70 tok/s on a NVIDIA RTX 3060 12GB.
Reading your hardware signalsβ¦
Real-world notes
Mistral 7B is the model that first proved a small open-weight LLM could feel genuinely useful, and it remains a sensible pick for anyone who wants a lightweight local chat assistant. At a 4-bit quant it lands around 4.4 GB, so it fits with room to spare on an 8 GB GPU, runs easily within unified memory on any Apple Silicon Mac, and even a 2-bit build at roughly 3 GB is on the table if you are squeezing it onto older hardware. Its Apache 2.0 license is about as permissive as it gets: free to use commercially, no provider strings attached.
In daily use it is quick and steady for chat and short summaries. On an RTX 4090 it pushes about 196 tokens per second at 4-bit, and even a modest RTX 3060 12GB holds around 70 tok/s, which is faster than you can read; an M-series Max sits near 80 tok/s. The 32K context window is comfortable but not enormous, and filling it all the way pushes total memory to roughly 8.4 GB, so on a tight 8 GB card you will want to keep working context modest rather than packing the full window.
The honest caveat is age: released in late 2023, it trails newer small models on harder reasoning and instruction-following, and Mistral Nemo 12B generally handles longer, more demanding prompts better if you can spare the memory. For coding specifically, Qwen 2.5 Coder 7B tends to be the stronger choice at a similar size. Where Mistral 7B still wins is simplicity and reach: it is tiny, fully open under Apache 2.0, and has years of tooling behind the plain 'mistral' Ollama tag, making it a dependable, no-surprises baseline.
Specifications
Size by quantization
| Quantization | Bits/weight | Download | Min RAM | Quality |
|---|---|---|---|---|
| Q2_K | 3.35 | 3.0 GB | 6 GB | Noticeable loss |
| Q4_K_MRecommended | 4.85 | 4.4 GB | 8 GB | Recommended |
| Q5_K_M | 5.65 | 5.1 GB | 8 GB | High |
| Q8_0 | 8.5 | 7.7 GB | 12 GB | Near-original |
| F16 | 16 | 14.4 GB | 24 GB | Original |
Sizes are estimates from parameter count Γ bits per weight; real GGUF builds vary slightly. Β· Data updated: 2026-06-11 Β· How we calculate these numbers β
Memory needed by context length
| Context | KV cache (est.) | Total memory (Q4) |
|---|---|---|
| 4K tokens | ~0.5 GB | ~4.9 GB |
| 8K tokens | ~1.0 GB | ~5.4 GB |
| 32K tokens | ~4.0 GB | ~8.4 GB |
The KV cache grows with context length β a model that fits at 4K can run out of memory at 32K. Estimates assume an FP16 cache with grouped-query attention; actual usage varies by runtime.
Estimated speed by hardware
| Hardware | Bandwidth | ~Speed |
|---|---|---|
| NVIDIA RTX 3060 12GB | 360 GB/s | ~70 tok/s |
| NVIDIA RTX 4090 24GB | 1008 GB/s | ~196 tok/s |
| Apple M-series (base) | 100 GB/s | ~19 tok/s |
| Apple M-series Pro | 270 GB/s | ~53 tok/s |
| Apple M-series Max | 410 GB/s | ~80 tok/s |
| CPU only (dual-channel DDR5) | 60 GB/s | ~12 tok/s |
Token generation is memory-bandwidth bound: tok/s β bandwidth Γ 0.85 Γ· model size at Q4. Real-world numbers vary by runtime and context length.
Run it locally
The easiest path is Ollama β one command and you're chatting:
ollama run mistralSources & downloads
Ollama Library
Pull and run the model with a single command.
ollama.comHugging Face
Model weights, files and license details.
huggingface.coOfficial GitHub repo
Source code, releases and issues from Mistral AI.
github.comMistral AI β official page
Official page and documentation from Mistral AI.
mistral.ai