Skip to main content
NVIDIA
Explore
Models
Skills
Blueprints
GPUs
Docs
Help Center
Getting Started
  1. Create and verify your account to unlock full access to NVIDIA NIM APIs.
ResourcesDeveloper ForumsContact Support
FAQs
  • View All Playbooks
    View All Playbooks

    onboarding

    • Connect Two DGX Stations for Distributed Workloads
    • MIG on DGX Station

    data science

    • Topic Modeling
    • Build Knowledge Graphs with txt2kg

    tools

    • Quantize Models to NVFP4 with NVIDIA Model Optimizer

    fine tuning

    • Train a Chat Model with NanoChat
    • NVFP4 Pretraining with Megatron Bridge

    use case

    • Run NemoClaw with a Local LLM
    • DGX Station AI Skills and dgx-assist
    • Secure AI Agents with OpenShell
    • Local Coding Agent
    • Profiler-Driven Kernel Optimization for Fine-Tuning
    • Local Healthcare Agent on DGX Station

    inference

    • Serve LLMs with vLLM
    • Generate Images and Videos with ComfyUI
    • Isaac GR00T N1.6 Fine-Tuning
    • Serve LLMs with SGLang

    Local Coding Agent

    30 MINS

    Run local CLI coding agents with Claude Code and Ollama on DGX Station (NVIDIA GB300) using qwen3.6:27b

    • Claude Code
    • Coding
    • DGX Station
    • GB300
    • LLM
    • Ollama
    OverviewOverviewClaude CodeClaude CodeTroubleshootingTroubleshooting
    SymptomCauseFix
    ollama: command not foundOllama not installed or PATH not updatedRerun curl -fsSL https://ollama.com/install.sh | sh and open a new shell
    Model load fails with version errorOllama is older than the model requiresUpdate Ollama to a current stable release. Do not pin to older versions.
    model not found in Claude CodeModel was not pulledRun ollama pull qwen3.6:27b and retry with ollama launch claude --model qwen3.6:27b.
    connection refused to localhost:11434Ollama service not runningStart with ollama serve or sudo systemctl start ollama
    Sharded GGUF model pull fails with HTTP 400Ollama does not support pulling sharded GGUF models from Hugging FaceUse the documented qwen3.6:27b model instead: ollama pull qwen3.6:27b.
    CUDA error: context is destroyed on a dual-GPU StationOllama may fail when both the GB300 and RTX PRO 6000 GPUs are visibleRun Ollama with one visible GPU. For example, set CUDA_VISIBLE_DEVICES=1 in the Ollama service environment, restart Ollama, and rerun the playbook.
    Claude Code edit task fails through the direct Ollama endpointDirect endpoint wiring can fail with some Ollama/model combinationsLaunch Claude Code through Ollama instead: ollama launch claude --model qwen3.6:27b.
    externally-managed-environment or Python package install failsSystem Python blocks direct package installsCreate and activate a virtual environment, then install pytest inside it: python3 -m venv .venv, source .venv/bin/activate, python3 -m pip install -U pytest.
    Slow responses or OOMInsufficient GPU memory or fragmentationOn DGX Station (NVIDIA GB300), ensure no other heavy GPU workloads. If OOM persists, unload other models or set OLLAMA_MAX_LOADED_MODELS=1.
    claude: command not found after installCLI not on PATH or install script did not completeRestart the terminal or run source ~/.bashrc (or your shell profile). Check the install script output for the install path and add it to PATH.
    Claude Code install fails (Node.js / network)Node.js missing or install script cannot downloadEnsure Node.js is installed (node --version). Run the installer with Bash: `curl -fsSL https://claude.ai/install.sh

    NOTE

    DGX Station with NVIDIA GB300 provides ample GPU memory for the documented qwen3.6:27b workflow. Use OLLAMA_MAX_LOADED_MODELS=1 if you hit memory limits with multiple models.

    Resources

    • Ollama Documentation
    • Qwen3.6 27B
    • Claude Code + Ollama Guide
    Terms of Use
    Privacy Policy
    Your Privacy Choices
    Contact

    Copyright © 2026 NVIDIA Corporation