How to Run NVIDIA Nemotron 3.5 Lightning Locally on an RTX 5090

How to Run NVIDIA Nemotron 3.5 Lightning Locally on an RTX 5090 (2026 Guide)

NVIDIA just dropped a new member of the Nemotron family built for a very different job than chasing benchmark scores: running fast, cheap, and endlessly inside AI agent loops. If…

September 10, 2026
6 min read

NVIDIA just dropped a new member of the Nemotron family built for a very different job than chasing benchmark scores: running fast, cheap, and endlessly inside AI agent loops. If you own an RTX 5090, you can run Nemotron 3.5 Lightning locally today, fully offline, with no per-token API bills. This 2026 guide walks through exactly what Nemotron 3.5 Lightning is, why the RTX 5090’s 32GB of VRAM makes it the sweet spot for local deployment, and how to get it running on Windows using Ollama or LM Studio.

What Is NVIDIA Nemotron 3.5 Lightning?

Nemotron 3.5 Lightning is NVIDIA’s latest release in its open Nemotron model family, and its design goal is speed at scale rather than peak reasoning. It’s a 30-billion-parameter model built on a mixture-of-experts (MoE) architecture, but only about 3 billion parameters are actively used per token. That routing is what makes it “Lightning”: it’s optimized for high-volume, repetitive steps inside long-running agent loops, things like tool calls, document triage, and multi-step workflow execution, where a model needs to respond fast and cheaply thousands of times in a row rather than produce one deeply reasoned answer.

That makes it a strong fit for anyone experimenting with local AI agent stacks, where a slow, expensive model bottlenecks every tool call. You can read more about the model directly on NVIDIA’s official Nemotron page on Hugging Face.

NVIDIA Nemotron 3.5 Lightning official model overview, how to run nemotron 3.5 lightning locally

VRAM Requirements: Why the RTX 5090 Is the Target GPU

Here’s the catch with MoE models: even though only ~3B parameters activate per token, you still need all 30B parameters’ worth of weights loaded into VRAM at once, because the model doesn’t know in advance which experts a given token will route to. That pushes the practical VRAM floor well past what 24GB cards like the RTX 4090 can comfortably handle.

NVIDIA has confirmed the RTX 5090’s 32GB of VRAM as a supported local target for Nemotron 3.5 Lightning via GGUF and llama.cpp-based tooling. The 24GB RTX 4090, by contrast, is not officially validated for this model, so if you’re planning a build specifically for running Nemotron locally, the 5090’s extra 8GB of headroom is the difference between a smooth quantized deployment and constant out-of-memory errors.

Test Config Specifications:

  • Monitor: MSI MAG342CQR E2 Curved Gaming Monitor
  • MotherboardMSI PRO Z890-S WIFI Motherboard
  • CPU: Intel Core Ultra 7 265K
  • RAM: 32GB (2X16) Corsair Vengeance Performance DDR5 Memory
  • Primary SSD: Western Digital SN850 500GB PCIe Gen 4 SSD
  • Secondary/Game SSD: 480GB Crucial SATA SSD, WD Green 960GB SATA SSD
  • Power Supply: Antec HCG-1000-EXTREME PSU
  • GPU: INNO3D GeForce RTX 5090 X3 OC
  • CPU Cooler: DEEPCOOL GAMMAXX L360 ARGB
  • CabinetMSI MAG PANO 130R PZ 
  • OS: Microsoft Windows 11 Pro

Licensing: NVIDIA’s Open Model Development Warranty (OpenMDW-1.1)

Nemotron 3.5 Lightning ships under NVIDIA’s OpenMDW-1.1 license, and it’s worth highlighting because it’s more permissive than most open releases. It doesn’t just cover the model weights, it also covers the training data and training recipes for commercial use, without the field-of-use restrictions that show up in a lot of other “open” model licenses. For teams building commercial local-AI agent products, that’s a meaningfully cleaner legal position than most competing open-weight releases offer.

Context Length: 1 Million Tokens on Paper, Much Less on a 5090

Nemotron 3.5 Lightning supports up to 1 million tokens of context architecturally, but don’t expect to use anywhere near that on consumer hardware. Even a single NVIDIA H100 with 80GB of VRAM is memory-bound to roughly 256K tokens in BF16 precision. On an RTX 5090, with a fraction of that VRAM budget and a quantized GGUF build, your practical usable context window will land considerably lower than 256K, still enough for large agent workflows and long documents, but nowhere close to the 1M-token ceiling the architecture technically allows.

How to Run Nemotron 3.5 Lightning Locally on an RTX 5090

There are two straightforward ways to get Nemotron 3.5 Lightning running on your RTX 5090 rig, using Ollama or using LM Studio with a community GGUF build.

Option 1: Ollama (Simplest Path)

Ollama now officially lists Nemotron 3.5 Lightning in its model library. Once Ollama is installed, open a terminal and pull the model:

ollama pull nemotron-3.5-lightning:30b

Then run it directly from the command line:

ollama run nemotron-3.5-lightning:30b

Ollama handles the GGUF quantization and VRAM offloading automatically, so this is the fastest way to get Nemotron talking on your RTX 5090 with no manual configuration.

Option 2: LM Studio with a Community GGUF Build

If you prefer a graphical interface with built-in chat history and model management, LM Studio supports Nemotron 3.5 Lightning the same way it supports any other GGUF model. Open LM Studio, search “Nemotron 3.5 Lightning” in the model browser, download a quantized GGUF build (Q4 or Q5 quantization is a sensible starting point on a 32GB card), and load it directly into a chat session. No extra setup is required beyond selecting the GPU offload layers, which LM Studio will suggest automatically based on your detected VRAM.

LM Studio model browser search results for run nemotron 3.5 lightning locally GGUF build

Nemotron 3.5 Lightning: Quick Reference Table

SpecDetail
DeveloperNVIDIA (Nemotron family)
Total parameters30B (Mixture-of-Experts)
Active parameters per token~3B
Minimum recommended VRAM32GB (RTX 5090 confirmed; RTX 4090 24GB not officially validated)
LicenseOpenMDW-1.1 (weights, training data & recipes, no field-of-use limits)
Max context (architecture)Up to 1 million tokens
Practical context on RTX 5090Well below 256K (H100 80GB BF16 caps near 256K)
Best suited forHigh-volume agent loops, tool calls, document triage
Local toolsOllama, LM Studio, llama.cpp (GGUF)
Ollama model library page for Nemotron 3.5 Lightning 30b, run nemotron 3.5 lightning locally

Should You Run Nemotron 3.5 Lightning Instead of Qwen 3.8 or GPT-OSS?

Nemotron 3.5 Lightning isn’t trying to be the smartest local model on your RTX 5090, it’s trying to be the fastest one for repetitive agent work. If you’re building a local AI agent that hammers through tool calls, file triage, or workflow automation all day, Lightning’s low active-parameter footprint means noticeably snappier responses than dense reasoning-focused models. For deep single-shot reasoning tasks, you may still prefer a model like our Qwen 3.8 local setup guide, but for agent loops specifically, Nemotron 3.5 Lightning is purpose-built for the job.

Final Thoughts

Between the RTX 5090’s 32GB VRAM headroom, NVIDIA’s unusually permissive OpenMDW-1.1 license, and a model purpose-built for agent workloads, Nemotron 3.5 Lightning is one of the easiest big local models to justify running in 2026, provided you have the GPU for it. Grab it through Ollama or LM Studio, keep your context windows realistic, and you’ve got a fast, fully offline agent backbone running on your own desktop.


Stay tuned to TechnoSports for more local AI, GPU, and hardware guides as NVIDIA and the open-model ecosystem keep shipping in 2026.

Buy the INNO3D GeForce RTX 5090 X3 OC from here

Follow us on Google News Get real-time updates & exclusive tech coverage
Follow

Leave a Reply

Your email address will not be published. Required fields are marked *