CloudNavi
← Back to articles
【2026】Ollama Complete Setup Guide: Running Local AI on a Mini PC
AI Tools·1 min read
#Ollama#local AI#mini PC#WSL2#LLM#setup guide

Summary

「I want to run AI on my own PC without relying on cloud API billing」

【2026】Ollama Complete Setup Guide: Running Local AI on a Mini PC


「I want to run AI on my own PC without relying on cloud API billing」

The tool that makes this wish come true is Ollama. Ollama is a tool for running LLMs (large language models) in a local environment. Download a model with one command and chat with AI offline.

This article fully explains how to run Ollama on a mini PC (GMKtec M8 / Minisforum UM690L), covering both Windows and WSL2.


Bottom Line: Ollama Runs AI on a Mini PC

QuestionAnswer
Can a mini PC run AI?Yes. 7B models run at practical speed
Required specs?16GB+ RAM, Ryzen 5+ CPU recommended
Do I need a GPU?Not required. CPU works, but GPU is faster
Is setup hard?Installing Ollama takes 5 minutes. 3 terminal commands
What can I use it for?Programming help, writing, translation, summarization

What Is Ollama

Ollama is an open-source tool for easily running LLMs on a local PC. Its feature: manages models like Docker.

Key Features

  • Download & run models with one command: ollama run llama3.2
  • Supports many models: Llama 3, DeepSeek V4, Mistral, Qwen, Gemma, etc.
  • REST API: callable from other applications
  • OpenAI-compatible API: use existing OpenAI libraries as-is
  • Multi-platform: macOS / Linux / Windows
  • GGUF quantization: plenty of lightweight models for low-memory environments

Required Environment

Assumes a 16GB-memory mini PC like the GMKtec M8 or Minisforum UM690L.

ItemRecommendedMinimum
Memory32GB+16GB
CPURyzen 7 / Core i7+Ryzen 5 / Core i5
Storage50GB+ (for models)20GB+
GPUNVIDIA RTX 4060+ (eGPU OK)Integrated GPU OK
OSLinux (Ubuntu 24.04)Windows 11 + WSL2

With 16GB memory, 7B model Q4 quantization is the realistic line. With 32GB, 13B models become viable.


Setup Steps (By OS)

Method A: Windows + WSL2 (Recommended)

Running Ollama on a Linux environment via WSL2 is the most stable.

Step 1: Install WSL2

# Run in PowerShell (admin)
wsl --install -d Ubuntu-24.04

After install, launch Ubuntu and set up a username and password.

Step 2: Install Ollama

# Inside WSL2 (Ubuntu)
curl -fsSL https://ollama.com/install.sh | sh

Step 3: Download and run a model

# Lightweight model (3B) — start with a smoke test
ollama run llama3.2:3b

# Practical models (7B)
ollama run llama3.1:7b
ollama run deepseek-v4:7b
ollama run qwen2.5:7b

The model downloads on first launch (2–10GB depending on model). After download, it works offline.

Method B: Windows Native (No WSL2)

An official installer is available for Windows.

  1. Download the Windows version from the Ollama official site
  2. Run the installer
  3. Open Command Prompt or PowerShell
  4. Run ollama run llama3.2:3b to verify

Almost no difference from the WSL2 version. Choose this if you want to use the GPU directly from the host OS.

Method C: Linux Native (Ubuntu / Debian)

If you've installed Linux directly on the mini PC:

# Official install script
curl -fsSL https://ollama.com/install.sh | sh

# Check service status
systemctl status ollama

# Run a model
ollama run llama3.2:3b

Setup Flow Diagram

Start Local AI in 4 StepsStep 1Install WSL2wsl --installStep 2Install Ollamacurl one-linerStep 3Download & run modelollama run llama3.2Step 4Browser UIOpen WebUIWhen done: fully offline, no billing, privacy-safe AI assistantNo network needed, no API costs, unlimited useRecommended first model: DeepSeek V4 Lite (7B)Great balance of coding, Japanese, and reasoning; smooth on the GMKtec M8

Recommended Models & Performance Reference

Based on measurements with the GMKtec M8 (Ryzen 5 6650H, 16GB).

ModelSizeParamsSpeedBest For
Llama 3.22.0GB3B🟢 BlazingSmoke test, simple chat
DeepSeek V4 Lite4.5GB7B-Q4🟢 SmoothProgramming, translation
Llama 3.14.7GB8B-Q4🟢 PracticalWriting, summarization
Qwen 2.54.5GB7B-Q4🟢 PracticalGeneral Japanese tasks
Mistral4.1GB7B-Q4🟢 PracticalCode generation, reasoning
DeepSeek V48.5GB14B-Q4🟡 Tight memoryNot recommended on 16GB

First pick: DeepSeek V4 Lite (7B). Great balance of programming, Japanese, and reasoning — smooth even on the GMKtec M8.


Common Commands

# Run a model (auto-downloads if missing)
ollama run <model-name>

# List downloaded models
ollama list

# Model details
ollama show <model-name>

# Delete a model
ollama rm <model-name>

# Start server mode (API)
ollama serve

# Search available models
ollama search <keyword>

Use It from the Browser with Open WebUI

Ollama is CLI-based, but installing Open WebUI gives you a ChatGPT-like browser UI.

# On WSL2 / Linux
pip install open-webui
open-webui serve

After launch, visit http://localhost:8080 to see the chat UI. Chat with local AI just like ChatGPT.


Ollama vs LM Studio

ItemOllamaLM Studio
InstallCLI (one command)GUI installer
OperationCommand line + APIMouse (GUI)
GPU usageAuto-detectedManual setup
Model managementAuto-download (easy)Manual download
API serverBuilt-in (OpenAI-compatible)Built-in
Windows supportWSL2 recommendedNative
Linux support✅ Full⛔ Not supported
GPU offloadAuto-setupManual setup

Recommendation: LM Studio for beginners, Ollama once you're used to it. Once familiar, Ollama is overwhelmingly more efficient.


Troubleshooting

Q. Getting "ollama: command not found"

Restart your shell after install. Run exec $SHELL or reopen the terminal.

Q. Model won't load due to memory

Try a smaller quantization. Append :q4_K_M or :q3_K_M to the model name.

ollama run llama3.1:8b-q4_K_M  # 4-bit quantization (recommended)
ollama run llama3.1:8b-q3_K_M  # 3-bit quantization (lighter)

Q. GPU not being used

Check GPU recognition with nvidia-smi in WSL2. On native Linux, you may need ROCm setup.

Q. Model download is slow

Models are 2–10GB. On a gigabit connection, a few minutes.


Summary: Start Local AI with Ollama

With Ollama, a ¥50K-class mini PC becomes a practical local AI environment.

StepContent
Step 1Install WSL2 (Windows users)
Step 2Install Ollama (curl one-liner)
Step 3Pick a model and run (ollama run <model>)
Step 4Use from the browser with Open WebUI

The appeal of local AI: no billing, no internet needed, and you get a private AI assistant. The mini PC + Ollama combo is the perfect entry point.


Related Articles

This site contains affiliate links. We may earn a commission from some services we recommend.


Related Reading