Download NemoClaw
Version: 0.1.0-alpha · Released: March 16, 2026 · License: MIT
NemoClaw Download
NemoClaw is distributed via an official NVIDIA installer script, Docker Hub images, and GitHub source. The fastest way to install is one curl command on Linux or macOS. Windows users need WSL2 first. For production evaluations, pull the Docker image directly. Source is available on the official NVIDIA GitHub organization.
Installation Methods
Installer Script
One-line install for Linux and macOS with Docker.
Docker Image
Pull the pre-built Docker image from NVIDIA NGC or Docker Hub.
Source Build
Clone the GitHub repository and build from source.
Method 1: Installer Script (Linux / macOS)
The official NVIDIA installer script is the fastest way to get NemoClaw running. It installs all dependencies, the OpenShell runtime, and adds nemoclaw and openclaw to your PATH. Requires Docker Engine 24.0+ and 8 GB RAM.
# Linux and macOS curl -fsSL https://www.nvidia.com/nemoclaw.sh | bash # Verify the installation nemoclaw --version # Expected output: # NemoClaw v0.1.0-alpha (OpenShell runtime v0.1.0) # NVIDIA Corporation — GTC 2026 Release # Platform: linux/amd64 (or darwin/arm64) # Connect your first assistant nemoclaw my-assistant connect # Launch the OpenClaw terminal UI openclaw tui
Script verification: Before running any curl | bash command, you should inspect the script content. Download and review it first:
# Download without executing curl -fsSL https://www.nvidia.com/nemoclaw.sh -o nemoclaw-install.sh # Review the script cat nemoclaw-install.sh # Execute after review bash nemoclaw-install.sh
Method 2: Docker Image
Pull the pre-built NemoClaw image directly from NVIDIA NGC (recommended for verified integrity) or Docker Hub. This method is ideal for CI/CD pipelines and Kubernetes deployments.
# Pull from NVIDIA NGC (recommended — verified by NVIDIA) docker pull nvcr.io/nvidia/nemoclaw:0.1.0-alpha # Or from Docker Hub docker pull nvidia/nemoclaw:0.1.0-alpha # Verify the image digest docker inspect nvcr.io/nvidia/nemoclaw:0.1.0-alpha | grep Id # Run with a basic operator policy docker run --rm -it \ -v $(pwd)/operator.yaml:/etc/nemoclaw/operator.yaml:ro \ -v $(pwd)/project:/workspace \ nvcr.io/nvidia/nemoclaw:0.1.0-alpha \ nemoclaw my-assistant connect # Run Kubernetes deployment (single agent) kubectl apply -f https://www.nvidia.com/nemoclaw/k8s/single-agent.yaml
Method 3: Build from Source (GitHub)
For contributors, security auditors, or teams that need to customize the OpenShell runtime, build NemoClaw from source. Requires Go 1.22+ and Rust 1.77+.
# Clone the official NVIDIA repository git clone https://github.com/NVIDIA/nemoclaw.git cd nemoclaw # Verify the commit signature (recommended) git log --show-signature HEAD # Install build dependencies # Requires: Go 1.22+, Rust 1.77+, Docker Engine make install-deps # Build the OpenShell runtime and NemoClaw CLI make build # Install to system PATH sudo make install # Verify nemoclaw --version
Download NemoClaw on Windows
NemoClaw does not have a native Windows binary. You must use WSL2 with Ubuntu 22.04 and then run the Linux installer script inside the WSL2 terminal. Follow the complete Windows setup guide for WSL2 configuration, Docker Desktop backend, and the install process.
All NemoClaw Resources
| Resource | Location | Description |
|---|---|---|
| Installer Script | nvidia.com/nemoclaw.sh | Official one-line installer for Linux and macOS |
| Docker Image (NGC) | nvcr.io/nvidia/nemoclaw:0.1.0-alpha | NVIDIA-verified container image |
| Docker Image (Hub) | docker.io/nvidia/nemoclaw:0.1.0-alpha | Public Docker Hub mirror |
| Source Code | github.com/NVIDIA/nemoclaw | Full source repository, MIT licensed |
| Policy Templates | github.com/NVIDIA/nemoclaw/policies/ | Starter operator policy YAML files |
| Kubernetes Manifests | nvidia.com/nemoclaw/k8s/ | Single-agent and multi-agent K8s configs |
| OpenShell Runtime | github.com/NVIDIA/openshell | Standalone OpenShell runtime source |
| ClawHub Skills | clawhub.dev | Community skill marketplace (review before use) |
Quick Reference: Essential Commands After Install
| Command | What It Does |
|---|---|
nemoclaw --version | Verify installation and check build version |
nemoclaw my-assistant connect | Initialize and connect a named agent assistant |
openclaw tui | Launch the interactive OpenClaw terminal UI |
nemoclaw status | List all active NemoClaw agent sessions |
nemoclaw policy validate FILE.yaml | Validate an operator policy file before use |
nemoclaw stop AGENT_NAME | Gracefully stop a running agent session |
nemoclaw logs --tail 50 | View the last 50 lines of the OpenShell audit log |
nemoclaw update | Update NemoClaw to the latest available version |