← Back to Blog

How to Run an LLM on a Normal Laptop (No GPU, No PhD)

You do not need a $3,000 graphics card. You need the right model and about ten minutes.

There is a myth that local AI needs a racing PC with a giant GPU. It does not. I run models on a plain laptop with no graphics card, and you can too. This is the exact path I would give a friend.

Why bother running locally at all

Three reasons: your data never leaves the machine, it works with no internet, and once it is set up the cost is zero. For notes, drafts, and private documents, that is a big deal.

Step 1: install Ollama

Ollama is the easiest on-ramp. On macOS or Linux, one command in the terminal. On Windows, the installer. That is the whole setup. No compiling, no Python environment fights.

Step 2: pick a small model

Do not start with the biggest model. Start with a quantized small one. "Quantized" just means the model is compressed so it fits in normal memory. A 3 to 4 billion parameter model runs fine on most laptops and still writes decent code and answers questions.

I usually start people on a small Qwen or Llama build. They are shockingly capable for the size.

Step 3: run it

One command pulls the model, and a second starts a chat in your terminal. Type a question. Get an answer. That is a real LLM running on your metal.

Step 4: give it a face

The terminal is fine, but most people want a chat window. Point a lightweight local UI at the model and you get a private ChatGPT that lives on your machine. No account, no bill.

How far can a normal laptop go?

Honest limits: a small model will not beat a frontier API on hard reasoning. It will stall on very long documents. But for daily writing, brainstorming, and coding help, it is more than enough, and it is private.

I keep a small model running for the 20 little tasks a day. The frontier API handles the few big ones. That split covers almost everything.

Common mistakes

  • Starting too big. A 70B model will crawl on a laptop. Start small, feel the speed, then size up if you must.
  • Skipping quantization. The compressed version is the difference between usable and frozen.
  • Expecting magic. Local models are great assistants, not oracles.

Your next move

Install Ollama tonight. Pull one small model. Ask it to summarize something private you would never paste into a web chatbot. That single moment, of it answering with your data never leaving the laptop, is the whole point.

Tuning for speed on weak hardware

Three levers: pick a smaller quantized model, close other apps to free memory, and use a UI that streams tokens so it feels responsive. The first model you try will feel slow. Size down one step and the difference is large.

A real use case

I keep a local model for meeting notes and draft ideas. Nothing leaves the laptop, it works on a train with no signal, and there is no bill. For private first drafts, local is simply the better default.

FAQ

Will it be as good as ChatGPT?

No, on hard reasoning. Yes, for notes, drafts, and daily questions. Know which job you are giving it.

How much memory do I need?

A small quantized model runs in 4 to 8 GB. Check your laptop before sizing up.

If you want the privacy and cost case for going local, read the open vs closed breakdown next.

About the author. Diwakar Ray Yadav writes about AI tools, prompt engineering, and automation from hands-on experiments in Kathmandu. .

Read next.

Read next.