/earth2studio-install
Guide installing Earth2Studio via uv or pip, selecting model extras, and configuring the environment. Do NOT use for writing inference code, choosing models, or PhysicsNeMo questions.
$ npx -y skills add NVIDIA/skills --skill earth2studio-install --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/earth2studio-install
Context preview
The summary Claude sees to decide when to auto-load this skill.
Guide installing Earth2Studio via uv or pip, selecting model extras, and configuring the environment. Do NOT use for writing inference code, choosing models, or PhysicsNeMo questions.
SKILL.md
earth2studio-install.SKILL.mdname: earth2studio-install
version: 0.16.0
license: Apache-2.0
metadata:
author: NVIDIA Earth-2 Team
tags:
- earth2studio
- earth2
- python
- install
- deployment
- environment
description: >
Guide installing Earth2Studio via uv or pip, selecting model extras, and
configuring the environment. Do NOT use for writing inference code, choosing
models, or PhysicsNeMo questions.Earth2Studio Installation Skill
Never install packages automatically
You **MUST NOT** install, upgrade, or modify packages on the user's behalf. Provide the exact command; the user runs it. No exceptions.
**Forbidden:** running `pip install`, `uv pip install`, `uv add`, `uv sync`, `conda install`, `apt install`, or any package manager.
**Instead:** give the exact command and ask the user to run it. Explain why the package is needed.
When a package is needed:
1. Identify it 2. Provide the exact command 3. Explain why it is needed 4. **Wait for the user to confirm they ran it**
Even if the user says "just install it", give the command and require them to execute it themselves.
Purpose
Help users install Earth2Studio and its optional model dependencies correctly for their use case. This skill handles package installation, optional-extra selection, environment variable configuration, and install verification.
Prerequisites
- Python 3.10+ (3.13 recommended)
- CUDA-capable GPU with compatible drivers for GPU extras
- uv (recommended) or pip package manager
- Internet access (packages installed from PyPI and GitHub)
You are helping a user install Earth2Studio and its optional model dependencies. Your only job is to get the package installed correctly for their use case — do not write inference code, do not compose workflows.
Core principle: docs are the source of truth
Earth2Studio installation commands, version tags, and extra names change between releases. **Before executing or recommending any install command, fetch the live installation docs:**
https://nvidia.github.io/earth2studio/userguide/about/install.html
Parse the page for the current version tag, available extras, and any special build notes. The workflow below is structural guidance — the specific commands come from the live page.
Instructions
Step 1. Fetch live docs
Use WebFetch on the install URL above. Extract:
- Current release version tag (e.g. `@0.14.0`)
- Available optional extras by category
- Known build quirks (e.g. `--no-build-isolation` for pip,
manual pre-installs)
Keep this data in working memory for all subsequent steps.
Step 2. Understand the user's environment
Ask (cap at 3 questions, skip what the user already answered):
1. **Package manager** — uv (recommended) or pip? If unsure, recommend uv and link <https://docs.astral.sh/uv/getting-started/installation/> 2. **Project context** — new project or adding to existing? 3. **Python version** — recommend the version from the docs (currently 3.13)
Step 3. Base install
Provide commands from the live docs based on their answers:
- **uv** uses a git source (not PyPI) to handle URL-based transitive dependencies
- **pip** installs from PyPI but some extras require manual pre-install steps
After the user runs the install, verify:
import earth2studio
earth2studio.__version__
Step 4. Select models and extras
Present the available extras organized by use case. Ask what the user plans to do — don't dump all options unprompted. Categories from the docs:
| Category | Example extras | |----------|---------------| | Prognostic (forecasting) | aifs, aurora, graphcast, pangu, sfno, stormcast, ... | | Diagnostic (post-processing) | corrdiff, climatenet, precip-afno, ... | | Data assimilation (beta) | da-healda, da-interp, da-stormcast | | Submodules | data, perturbation, statistics |
The exact list comes from the live docs — cite those, not this table.
Ask:
1. Which models do you plan to use? 2. Do you need submodule extras (data sources, perturbation methods, statistics)? 3. Or install everything? (uv only: `--extra all`)
Step 5. Install selected extras
Provide the exact commands from the live docs for their selections. Key warnings to surface:
- **Slow builds**: flash-attention (AIFS variants), natten
(Atlas, StormScope), torch-harmonics CUDA extensions (FCN3, SFNO) — can take 10-30+ minutes
- **pip-specific manual steps**: some models require
`--no-build-isolation` or pre-installing packages like earth2grid, torch-harmonics, or makani
- **Data assimilation models**: require CuPy + cuDF (CUDA 12)
Step 6. Configuration (offer, don't force)
Mention environment variables the user might want to set — only if relevant (e.g. limited disk, shared filesystem, CI environment):
| Variable | Purpose | |----------|---------| | `EARTH2STUDIO_CACHE` | General cache directory | | `EARTH2STUDIO_DATA_CACHE` | Data source cache (overrides general) | | `EARTH2STUDIO_MODEL_CACHE` | Model checkpoint cache (overrides general) | | `EARTH2STUDIO_PACKAGE_TIMEOUT` | Max seconds for model downloads |
Troubleshooting
If installation fails, point the user to:
- <https://nvidia.github.io/earth2studio/userguide/support/troubleshooting.html>
- <https://nvidia.github.io/earth2studio/userguide/support/faq.html>
Common issues:
- **PyTorch/CUDA mismatch**: verify `torch.cuda.is_available()` first
- **flash-attention build failure**: CUDA toolkit version must match
PyTorch CUDA
- **ONNX Runtime GPU**: may need version-specific install for their CUDA
- **ecCodes missing**: required for GRIB data handling; install via
`sudo apt-get install libeccodes-dev` (Debian/Ubuntu) or `conda install -c conda-forge eccodes`
- **Python.h: No such file or directory**: missing Python development
headers; install via `sudo apt-get install python3-dev`
Limitations
- Cannot help with runtime errors unrelated to missing dependencies
- Does not cover model checkpoint downloads (those h
Read more
name: earth2studio-install
version: 0.16.0
license: Apache-2.0
metadata:
author: NVIDIA Earth-2 Team
tags:
- earth2studio
- earth2
- python
- install
- deployment
- environment
description: >
Guide installing Earth2Studio via uv or pip, selecting model extras, and
configuring the environment. Do NOT use for writing inference code, choosing
models, or PhysicsNeMo questions.Earth2Studio Installation Skill
Never install packages automatically
You **MUST NOT** install, upgrade, or modify packages on the user's behalf. Provide the exact command; the user runs it. No exceptions.
**Forbidden:** running `pip install`, `uv pip install`, `uv add`, `uv sync`, `conda install`, `apt install`, or any package manager.
**Instead:** give the exact command and ask the user to run it. Explain why the package is needed.
When a package is needed:
1. Identify it 2. Provide the exact command 3. Explain why it is needed 4. **Wait for the user to confirm they ran it**
Even if the user says "just install it", give the command and require them to execute it themselves.
Purpose
Help users install Earth2Studio and its optional model dependencies correctly for their use case. This skill handles package installation, optional-extra selection, environment variable configuration, and install verification.
Prerequisites
- Python 3.10+ (3.13 recommended)
- CUDA-capable GPU with compatible drivers for GPU extras
- uv (recommended) or pip package manager
- Internet access (packages installed from PyPI and GitHub)
You are helping a user install Earth2Studio and its optional model dependencies. Your only job is to get the package installed correctly for their use case — do not write inference code, do not compose workflows.
Core principle: docs are the source of truth
Earth2Studio installation commands, version tags, and extra names change between releases. **Before executing or recommending any install command, fetch the live installation docs:**
https://nvidia.github.io/earth2studio/userguide/about/install.html
Parse the page for the current version tag, available extras, and any special build notes. The workflow below is structural guidance — the specific commands come from the live page.
Instructions
Step 1. Fetch live docs
Use WebFetch on the install URL above. Extract:
- Current release version tag (e.g. `@0.14.0`)
- Available optional extras by category
- Known build quirks (e.g. `--no-build-isolation` for pip,
manual pre-installs)
Keep this data in working memory for all subsequent steps.
Step 2. Understand the user's environment
Ask (cap at 3 questions, skip what the user already answered):
1. **Package manager** — uv (recommended) or pip? If unsure, recommend uv and link <https://docs.astral.sh/uv/getting-started/installation/> 2. **Project context** — new project or adding to existing? 3. **Python version** — recommend the version from the docs (currently 3.13)
Step 3. Base install
Provide commands from the live docs based on their answers:
- **uv** uses a git source (not PyPI) to handle URL-based transitive dependencies
- **pip** installs from PyPI but some extras require manual pre-install steps
After the user runs the install, verify:
import earth2studio earth2studio.__version__
Step 4. Select models and extras
Present the available extras organized by use case. Ask what the user plans to do — don't dump all options unprompted. Categories from the docs:
| Category | Example extras | |----------|---------------| | Prognostic (forecasting) | aifs, aurora, graphcast, pangu, sfno, stormcast, ... | | Diagnostic (post-processing) | corrdiff, climatenet, precip-afno, ... | | Data assimilation (beta) | da-healda, da-interp, da-stormcast | | Submodules | data, perturbation, statistics |
The exact list comes from the live docs — cite those, not this table.
Ask:
1. Which models do you plan to use? 2. Do you need submodule extras (data sources, perturbation methods, statistics)? 3. Or install everything? (uv only: `--extra all`)
Step 5. Install selected extras
Provide the exact commands from the live docs for their selections. Key warnings to surface:
- **Slow builds**: flash-attention (AIFS variants), natten
(Atlas, StormScope), torch-harmonics CUDA extensions (FCN3, SFNO) — can take 10-30+ minutes
- **pip-specific manual steps**: some models require
`--no-build-isolation` or pre-installing packages like earth2grid, torch-harmonics, or makani
- **Data assimilation models**: require CuPy + cuDF (CUDA 12)
Step 6. Configuration (offer, don't force)
Mention environment variables the user might want to set — only if relevant (e.g. limited disk, shared filesystem, CI environment):
| Variable | Purpose | |----------|---------| | `EARTH2STUDIO_CACHE` | General cache directory | | `EARTH2STUDIO_DATA_CACHE` | Data source cache (overrides general) | | `EARTH2STUDIO_MODEL_CACHE` | Model checkpoint cache (overrides general) | | `EARTH2STUDIO_PACKAGE_TIMEOUT` | Max seconds for model downloads |
Troubleshooting
If installation fails, point the user to:
- <https://nvidia.github.io/earth2studio/userguide/support/troubleshooting.html>
- <https://nvidia.github.io/earth2studio/userguide/support/faq.html>
Common issues:
- **PyTorch/CUDA mismatch**: verify `torch.cuda.is_available()` first
- **flash-attention build failure**: CUDA toolkit version must match
PyTorch CUDA
- **ONNX Runtime GPU**: may need version-specific install for their CUDA
- **ecCodes missing**: required for GRIB data handling; install via
`sudo apt-get install libeccodes-dev` (Debian/Ubuntu) or `conda install -c conda-forge eccodes`
- **Python.h: No such file or directory**: missing Python development
headers; install via `sudo apt-get install python3-dev`
Limitations
- Cannot help with runtime errors unrelated to missing dependencies
- Does not cover model checkpoint downloads (those h
Official, NVIDIA-verified Agent Skills for Claude Code, Codex, and other coding agents.
Other skills on nvidia-skills.
- /nvidia-skill-finder
Use for NVIDIA-related requests where an NVIDIA skill might help, even if the user did not ask for a skill. Trigger on NVIDIA products, hardware, software, SDKs, GPUs, Jetson/JetPack/L4T/BSP/SDK Manager/driver/flashing/setup, CUDA, NIM, NeMo, Omniverse/OpenUSD/SimReady,
Open skill - /accelerated-computing-cudf
Official NVIDIA-authored guidance for NVIDIA cuDF GPU DataFrames, pandas acceleration, dask-cuDF, ETL, joins, groupby, CSV/Parquet I/O, nullable semantics, and multi-GPU DataFrame workloads.
Open skill - /aiq-deploy
Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.
Open skill - /aiq-research
Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.
Open skill - /amc-run-sample-calibration
Run end-to-end calibration on the shipped sample dataset (sdg_08_2_sample_data_010926.zip) against a running AMC microservice. Use when user says 'test sample dataset', 'run sample calibration', 'verify AMC install', or 'launch and test'.
Open skill - /amc-run-video-calibration
Calibrate a new dataset from pre-recorded video files via the AutoMagicCalib REST API. Use when user has local MP4s and says 'calibrate my videos', 'run AMC on these videos', or similar. For RTSP/live streams, use amc-run-rtsp-calibration instead.
Open skill

