PC for Ollama 2026: What hardware do you need to run your LLMs locally?


Ollama became in 2026 the go-to tool for running LLMs locally — one command to download a model, an OpenAI-compatible API on localhost:11434, and the ability to run Llama 4, Qwen 3.5, DeepSeek V4, or Gemma 4 directly on your own machine. But what PC do you need for truly usable performance? This guide answers that question precisely, with real benchmarks and tested hardware recommendations.


What is Ollama and why is everyone using it in 2026?

Ollama is an open-source LLM runtime that downloads, runs, and exposes AI models locally — entirely on your machine, with no cloud connection. Its adoption exploded in 2026 for three reasons:

  • One command to start. No complex setup, no weight management, quantization, or runtime compilation.
  • OpenAI-compatible API. Any app designed for ChatGPT can switch to Ollama by just changing the URL — localhost:11434 instead of api.openai.com.
  • Library of 500+ models. Llama 4 Scout, Qwen 3.5, DeepSeek V4, Gemma 4, Mistral, Phi-4, Qwen2.5-Coder — all available with a single ollama pull command.

Installation fits in one line:

curl -fsSL https://ollama.com/install.sh   | sh  
ollama pull qwen3:14b
ollama run qwen3:14b

In under 5 minutes, you have a working local LLM — accessible from your browser (via Open WebUI), your code editor, or any application via the REST API.


The critical factor for Ollama: VRAM

Ollama loads model weights into GPU memory. If everything fits in VRAM, you get 40 to 80 tokens/second on an RTX 5060 Ti 16 GB. If the model overflows into system RAM, performance collapses:

⚠️ The VRAM overflow trap: according to benchmarks from LocalLLM.in (February 2026), a Qwen 3 8B model drops from 40 tok/s with full VRAM to only 8 tok/s when 11 of the 36 layers must move to RAM — a 5× slowdown. For heavier models, the slowdown can reach 30× slower. The bottleneck is the PCIe bandwidth between system RAM and VRAM.

Conclusion: it’s better to choose a smaller model that fits entirely in VRAM than a large model that overflows. A Qwen 3.5 14B at 60 tok/s is more useful than a Llama 3.3 70B struggling at 4 tok/s.


VRAM required according to the Ollama model (Q4_K_M, May 2026)

GPU VRAM Compatible models 2026 examples Approximate speed
5-8 Go Up to 9B Llama 3.1 8B, DeepSeek-R2 8B, Qwen3 8B, Gemma 3 4B 40-90 tok/s
12 GB Up to 17B MoE Llama 4 Scout 17B, Gemma 3 12B 30-50 tok/s
16 GB ⭐ Sweet spot 13B-14B dense / 17B MoE Qwen 3.5 14B, Mistral Medium 3.5, Phi-4 14B 40-70 tok/s
20 GB Up to 32B Qwen2.5-Coder 32B, DeepSeek-R1 32B 25-40 tok/s
24 GB Comfortably up to 27B Gemma 4 26B QAT (85 tok/s measured) 30-60 tok/s
32 GB (RTX 5090) Up to 70B in Q4 Llama 3.3 70B (86.0 MMLU), Qwen 3.5 72B 15-30 tok/s
48 GB+ (multi-GPU) 70B FP16 or Q5/Q6 Llama 3.3 70B FP16 with 32K context 10-20 tok/s
128 GB unified (GB10) 200B+ models DeepSeek V4 Flash FP16, Llama 4 Maverick 20-40 tok/s

Sources: real Ollama benchmarks from Morph (April 2026), glukhov.org (RTX 4080 16 GB, March 2026), LocalAIMaster (March 2026). VRAM measured at 8K-19K context with Q4_K_M quantization. Actual values vary depending on loaded context.


The best Ollama models in May 2026 by category

Category Recommended model Ollama command VRAM
General purpose Llama 4 Scout 17B ollama pull llama4:scout ~10 GB
French / multilingual Qwen 3.5 14B ollama pull qwen3.5:14b ~10 GB
Pure speed (85 tok/s) Gemma 4 26B QAT ollama pull gemma4:26b ~14 GB
Code ⭐ #1 open source Qwen2.5-Coder 32B ollama pull qwen2.5-coder:32b ~20 GB
Math/logic reasoning DeepSeek-R2 8B ollama pull deepseek-r2:8b ~5 GB
STEM / structured analysis Phi-4 14B (80.4% MATH) ollama pull phi4 ~10 GB
Small / lightweight Llama 3.1 8B (111M+ downloads) ollama pull llama3.1:8b ~5 GB
Maximum quality Llama 3.3 70B (86.0 MMLU) ollama pull llama3.3:70b ~40 GB
💡 Note: Qwen2.5-Coder 32B reaches 92.7% on HumanEval — a score that rivals GPT-4o on code, while running on an RTX 4080 / 5080 (20 GB VRAM). It’s one of the biggest local quality leaps of 2026.


Beyond the GPU: what also matters for Ollama


System RAM (DDR5 >> DDR4)

If your model spills over into system RAM, its speed depends directly on memory bandwidth. DDR5-6000 offers 15-25% more performance than DDR4-3200 in CPU offloading mode. For Ollama, prioritize at least 32 GB DDR5 on an AM5 platform.


Fast NVMe SSD

Ollama models range from 5 GB (Llama 3.1 8B) to 40 GB (Llama 3.3 70B). A Gen 4 NVMe SSD loads a 14B model in 5-8 seconds on first ollama runOn a SATA SSD, expect 30-60 seconds.


CPU and threads

For pure GPU inference, the CPU matters little. But as soon as there is CPU offloading or RAG (retrieval augmented generation), a Ryzen 7 or 9 with 12-16 cores makes a difference. AVX-512 (Intel 12th Gen+, AMD Zen 4+) speeds up CPU inference by 10-20%.


Essential Ollama commands

# Install Ollama (Linux/macOS)  
curl -fsSL https://ollama.com/install.sh   | sh  

# Download and run a model  
ollama pull qwen3.5:14b  
ollama run qwen3.5:14b  

# List installed models  
ollama list  

# Stop a model (free VRAM)  
ollama stop qwen3.5:14b  

# View GPU/CPU usage  
OLLAMA_DEBUG=1 ollama run llama3.1:8b "test" 2>&1   | grep "layers"  

# Force a specific number of GPU layers  
ollama run llama3.1:8b --gpu-layers 28  


Common mistakes to avoid

  • Choose Q2_K to fit a large model — severe quality degradation. A 34B model in Q6_K is better than a 70B in Q2_K.
  • Ignore the KV cache — an 8B model with 32K context requires ~4.5 GB extra for attention cache. Leave 2-4 GB margin in VRAM.
  • Load multiple models simultaneously — Ollama keeps them in VRAM by default. Use ollama stop to free up space.
  • Underestimate RAM — 32 GB DDR5 minimum for serious use. 64 GB for 30B+ models with CPU offloading.


Our PCs optimized for Ollama — pre-configured with Ollama + Open WebUI

Radiance Systems designs workstations dedicated to local LLM inference. Each machine is delivered with Ollama and Open WebUI pre-installed and configured on request, with the models of your choice already downloaded. You start your PC and chat with your AI in under 2 minutes.

⭐ 200B+ models · Quiet mini form factor
NVIDIA GB10 AI Mini Server ASUS Ascent GX10 - Ollama PC 200B parameters

NVIDIA GB10 AI Mini Server — ASUS Ascent GX10

Chip NVIDIA GB10 Grace Blackwell
Memory 128 GB unified LPDDR5X
AI Power 1 petaFLOP FP4
Form factor 150×150×51 mm
OS DGX OS (Ubuntu, CUDA)
Storage NVMe 4 TB

✅ Llama 4 Maverick FP16 · DeepSeek V4 Flash FP16 · Models up to 200B parameters

The only desktop system capable of running models that even an RTX 5090 cannot hold in VRAM. 128 GB of unified memory, GPU and CPU merged via NVLink-C2C at 900 GB/s. Ideal for a firm demanding maximum capacity in an ultra-compact and silent format.

3 999 € Starting from

Delivered ready to use · DGX OS · Native Ollama

Configure this server →
Entry-level · Sweet spot Ollama
Radiance PC CoreAI 16 RTX 5060 Ti 16GB - Ollama Qwen 14B Mistral PC

Radiance PC CoreAI 16 — RTX 5060 Ti 16 GB

CPU AMD Ryzen 5 7500F
GPU RTX 5060 Ti 16 GB GDDR7
RAM DDR5 16 GB
Storage NVMe 1 TB
OS Windows 11 Pro / Ubuntu
Bandwidth ~672 GB/s

✅ Qwen 3.5 14B · Mistral Medium 3.5 · Llama 4 Scout 17B · Phi-4 14B
Measured speed: 40-70 tokens/second

The 2026 sweet spot for Ollama. 16 GB GDDR7 to run 14B models fully on GPU without CPU offloading. AM5 DDR5 platform for RAG pipelines. Ideal entry point for a freelance professional.

1 703 € Starting from

Ollama + Open WebUI pre-installed on demand

Configure this workstation →
Code & 30B Models
Radiance PC CoreAI 32 RTX 5070 Ti - Ollama Qwen2.5-Coder 32B PC

Radiance PC CoreAI 32 — RTX 5070 Ti 16 GB

CPU AMD Ryzen 9 9900X
GPU RTX 5070 Ti 16 GB GDDR7
RAM DDR5 32 GB
Storage NVMe 1 TB
OS Windows 11 Pro / Ubuntu
Bandwidth ~1,280 GB/s

✅ Qwen2.5-Coder 32B (92.7% HumanEval) · Gemma 4 26B · DeepSeek-R1 32B
Measured speed: 25-45 tokens/second

For demanding developers and professionals. Memory bandwidth 1.9× higher than RTX 5060 Ti, ideal for 27B-32B models. Ryzen 9 9900X handles RAG pipelines and n8n orchestration in parallel.

2 442 € Starting from

Pre-downloaded models on demand (Qwen3.5, Mistral, DeepSeek)

Configure this workstation →
70B models · The best GPU of 2026
Radiance PC CoreAI 64 RTX 5090 32GB - Ollama Llama 3.3 70B PC

Radiance PC CoreAI 64 — RTX 5090 32 GB

CPU AMD Ryzen 9 9950X3D
GPU RTX 5090 32 GB GDDR7
RAM DDR5 64 GB
Storage NVMe 1 TB
Bandwidth 1,792 GB/s
Power supply 1,200 W 80+ Gold

✅ Llama 3.3 70B Q4 (86.0 MMLU) · Qwen 3.5 72B · DeepSeek V4 Flash
Measured speed: 15-30 tokens/second on 70B

The best consumer GPU for Ollama in 2026. 1,792 GB/s memory bandwidth — consumer market record. Llama 3.3 70B Q4 fully on GPU, performance nearly equivalent to GPT-4o on most tasks.

6 042 € Starting from

Light fine-tuning possible · LoRA compatible

Configure this workstation →
Multi-user · 64 GB VRAM
Radiance CoreAI Rack 2x RTX 5090 - multi-user Ollama server

Radiance CoreAI Rack — 2× RTX 5090 (64 GB VRAM)

CPU AMD Ryzen 9 9950X3D
GPU 2× RTX 5090 32 GB
Total VRAM 64 GB GDDR7
RAM DDR5 128 GB
Form factor Rack 4U
Power supply 2,000 W Platinum

✅ Llama 3.3 70B FP16 · Qwen 3.5 235B Q4 · Simultaneous multi-GPU inference

For teams of 5 to 20 users sharing an Ollama server. Concurrent inference on two independent GPUs — each user has their dedicated stream. Ideal for offices with multiple collaborators.

11 221 € Starting from

Custom · Rack 4U · Ollama multi-tenant server

Configure this rack →
Production · ECC · 192 GB VRAM
Radiance CoreAI Rack 2x RTX 6000 Blackwell ECC - Ollama production server

CoreAI 128 Rack — 2× RTX 6000 PRO Blackwell (192 GB ECC)

CPU AMD Ryzen 9 9950X3D
GPU 2× RTX 6000 96 GB ECC
Total VRAM 192 GB ECC
RAM DDR5 128 GB
Form factor Rack 4U
Power supply 2,000 W Platinum

✅ All Ollama models in native precision · Fine-tuning 70B+ · 24/7 production

Professional GPUs with ECC memory for continuous production. 192 GB ECC VRAM allows running the largest open-source models in native precision (FP16). Maximum reliability for critical environments.

27 980 € Starting from

On-site installation available · Dedicated support

Configure this rack →
Threadripper PRO · HPC · 2 TB max RAM
Radiance PC Pro AI Ultra Threadripper - Ollama HPC training station

Radiance PC Pro AI Ultra Threadripper

CPU Threadripper PRO 7955WX 16c
GPU RTX 6000 Blackwell 96 GB
RAM ECC DDR5 128 GB RDIMM
Max RAM Up to 2 TB ECC
Form factor Rack 4U
Power supply 2,000 W Platinum

✅ Distributed training · Massive RAG pipelines · HPC · Intensive fine-tuning

The ultimate workstation for demanding production environments. Threadripper PRO sTR5 platform expandable up to 96 cores and 2 TB ECC RAM. For mixed workloads: Ollama + vector databases + n8n orchestration + training.

20 213 € Starting from

Custom · Personalized quote · On-site installation

Request a quote →


Which PC for Ollama according to your profile?

Profile Configuration Typical Ollama model Budget
Discovery / small personal use RTX 5060 Ti 16 GB (CoreAI 16) Qwen 3.5 14B, Llama 4 Scout ~€1,700
Compact private practice ⭐ ASUS Ascent GX10 (GB10) DeepSeek V4 Flash FP16, 200B+ ~€4,000
Developer / data scientist CoreAI 32 RTX 5070 Ti Qwen2.5-Coder 32B, DeepSeek-R1 32B ~€2,400
70B models locally CoreAI 64 RTX 5090 Llama 3.3 70B Q4 ~€6,000
Team 5-20 shared users Rack 2× RTX 5090 Llama 3.3 70B FP16, multi-tenant ~€11,000
Critical production 24/7 Rack 2× RTX 6000 ECC All models, native FP16 ~€28,000


Ollama use cases by profession

  • Lawyers & Notaries — Qwen 3.5 14B + Open WebUI: contract analysis, client file search, drafting of deeds. All local, GDPR compliant and professional secrecy.
  • Doctors & Clinics — Mistral Medium 3.5 + RAG: dictated reports, patient history analysis, medical document database. No data reaches a cloud server.
  • Accountants — DeepSeek-R2 8B + Phi-4 14B: balance sheet analysis, anomaly detection, report generation. Confidential figures never uploaded elsewhere.
  • Developers — Qwen2.5-Coder 32B + Ollama API: code completion in VS Code/Cursor, debugging, refactoring. OpenAI-compatible API, integration in 3 lines.
  • SMBs & enterprises — Llama 4 Scout + n8n + vector database: internal AI assistant connected to your docs, procedures, CRM. Deployment on private network.


Frequently Asked Questions — PCs for Ollama


What is the minimum GPU for Ollama?

8 GB of VRAM (RTX 4060, RTX 5060) is enough for 7-8B models like Llama 3.1 8B or DeepSeek-R2 8B. But the 2026 sweet spot is 16 GB of VRAM (RTX 5060 Ti 16 GB or RTX 5070 Ti) — you get access to 13-14B and 17B MoE models like Qwen 3.5 14B, Mistral Medium 3.5, or Llama 4 Scout, which offer much higher quality for only a €200-400 GPU price difference.


Does Ollama work without a dedicated GPU?

Yes, Ollama can run on CPU only. But speeds drop to 3-8 tokens/second on a 7B model with a modern CPU — frustrating for interactive use. A GPU with 8 GB+ VRAM is highly recommended for a smooth experience (30+ tok/s).


How to know if my model fits in VRAM?

Run OLLAMA_DEBUG=1 ollama run [modèle] "test" — the logs show how many layers are loaded on GPU vs CPU. If less than 100% are on GPU, your model is too large. Choose a lower quantization (minimum Q4_K_M) or a smaller model.


Is Windows or Linux needed for Ollama?

Both work very well. Linux (Ubuntu) offers the best raw performance and optimal CUDA support. Windows 11 simplifies daily use and is compatible with WSL2 for developers. Our workstations come with the OS of your choice.


Which interface to use with Ollama?

Open WebUI is the most popular web interface in 2026 — chatGPT-like, deployable via Docker, with native document RAG management. LM Studio offers a desktop alternative with an integrated GUI. Our Radiance PCs can be delivered with either pre-installed according to your preference.


Can fine-tuning be done on these Ollama PCs?

LoRA fine-tuning (parameter-efficient) is possible starting from 16 GB of VRAM for 7B-8B models. For serious fine-tuning on 14B-32B, you need 24 GB+ (CoreAI 32 or higher). For 70B+ models, expect 48 GB+ with multi-GPU.

 

Back to the blog

Your quote for a custom AI solution within 24–48 hours

Every Radiance project starts with a conversation. Fill out this form, and an expert will quickly respond with a solution tailored to your business and budget.

Response within 24–48 business hours
Delivery throughout Europe (EU)
2-year warranty included
On-site installation available
No commitment on demand
Dedicated support before and after purchase
contact@radiancesystems.eu
+33 4 65 84 48 21
Mon – Fri, 9 AM – 5 PM
01 What is your primary use of AI?
Multiple choice.
02 In what context will the system be used?
Single choice.
03 What type of system are you looking for?
Single choice.
04 Which operating system do you prefer?
Single choice.
05 What are your expectations for the software?
Multiple choice.
06 What is your approximate budget?
Single choice.
07 When would you like to receive your system?
Single choice.
08 Would you like assistance with the setup?
Single choice. A Radiance technician can assist you at your location or remotely.
09 Delivery country (EU only) *
We only deliver within the European Union (EU).
10 Additional information (optional but very useful)
Briefly describe your project, your specific constraints, or any useful information.
11 Would you like to be contacted to discuss your project?
If you choose "Quote only," you will be able to reply to our email to ask your questions and refine the quote.
12 Email *
We will send the quote to this address.

Any more questions?

Send us an email at contact@radiancesystems.eu or contact us via the contact form; we respond to all inquiries within 3 hours during business hours (Monday to Friday from 9 AM to 5 PM).

📞 +33 4 65 84 48 21