npx skills add ...
npx skills add nvidia/skills --skill holoscan-install-source
Build Holoscan SDK from source via the in-tree ./run script. Use only when published packages don't meet the user's needs.
npx skills add nvidia/skills --skill holoscan-install-source
Build the Holoscan SDK from the nvidia-holoscan/holoscan-sdk source tree using its ./run script (which builds inside a Docker container), producing a local install tree consumable as a CMake dependency.
nvidia-smi).git, Docker with NVIDIA Container Toolkit (docker run --gpus all works), and docker-buildx-plugin../run script builds inside a container; this is not a true bare-metal build.qemu-user-static on the host.Always fetch the "Build from Source" section of https://docs.nvidia.com/holoscan/sdk-user-guide/sdk_installation.html (and the linked GitHub README.md / DEVELOP.md for the chosen tag) before building. Extract: required ./run flags for the target architecture and CUDA major, supported branches/tags, any Dockerfile patches called out for the release, and the test names recommended for verification. If the doc disagrees with anything below, the doc wins.
Check that git and Docker (with GPU passthrough) are available:
sudo apt-get install docker-buildx-pluginClone repo to ~/holoscan/holoscan-sdk if needed
To build a specific release tag (recommended for stability):
The ./run build script handles container creation, CMake configuration, compilation, and install in one step. Warn the user this takes 10–30 minutes on first run (downloads base image + compiles).
Common options:
| Flag | Purpose |
|---|---|
--type debug | Debug build (symbols, no optimization) |
--type RelWithDebInfo | Release + debug symbols |
--arch aarch64 | Cross-compile for ARM64 (needs sudo apt install qemu-user-static) |
--gpu igpu | iGPU build for Jetson/IGX |
--dryrun | Preview commands without executing |
If CMake cache errors occur after changing options:
Output lands in these folders, and can be retrieved with ./run get_build_dir and ./run get_install_dir
build-cu<N>-<arch>/install-cu<N>-<arch>/.Run the following tests
To run all six required tests at once, use a single-quoted regex (the | must be quoted to prevent bash from treating it as a pipe):
Run a specific test by name or regex:
Important: Always single-quote the regex string when it contains | — without quotes, bash interprets | as a pipe and the command fails with command not found.
Expected: all tests pass. Note any failures and report them to the user before continuing.
Once built, applications can use the install tree as a CMake dependency. Give the user this path:
They can set Holoscan_ROOT or CMAKE_PREFIX_PATH to this directory when building their own applications.
| Symptom | Fix |
|---|---|
bash: <TEST_NAME>: command not found when running tests | The regex contains | — wrap it in single quotes: --options "-R '<regex>'" |
| CMake cache errors after option change | ./run clear_cache && ./run build |
| Docker buildx not found | sudo apt-get install docker-buildx-plugin |
| GPU not visible inside build container | Verify NVIDIA Container Toolkit and re-run sudo nvidia-ctk runtime configure --runtime=docker |
| Cross-compile fails (aarch64) | Install qemu: sudo apt-get install qemu-user-static |