How to Install ZED SDK on NVIDIA® Jetson

Open in ClaudeOpen in ChatGPT

To use StereoLabs’ cameras on NVIDIA® Jetson™ platforms, you need to:

Download and Install JetPack

If you are working with a StereoLabs’ ZED Box, please refer to the relative documentation for the ZED Box Orin, or ZED Box Mini instead.

NVIDIA® Jetson™ boards need to be flashed first with JetPack (their operating system). We recommend using the NVIDIA® SDK Manager to flash your NVIDIA® Jetson™ with the latest OS image and developer tools.

Go to the JetPack section of NVIDIA’s website, and click on Download SDK Manager. More installation instructions are available on Install Jetson™ Software with SDK Manager.

image

Download and Install the ZED SDK

  • Download the ZED SDK for NVIDIA® Jetson. Multiple versions of JetPack are supported, make sure to select the one that matches your system.

  • Go to the folder where the installer has been downloaded.

    $cd path/to/download/folder
  • Add execution permission to the installer using the chmod +x command. Make sure to replace the installer name with the version you downloaded.

    $chmod +x ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run
  • Run the ZED SDK installer.

    $./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run
  • At the beginning of the installation, the Software License will be displayed, hit q after reading it.

  • During the installation, you might have to answer some questions about installing dependencies, tools, and samples. Type y for yes or n for no, then hit Enter. Hit Enter to pick the default option.

On Jetson™ boards, CUDA is installed automatically with JetPack, so you’re now ready to use the ZED SDK.

Installing in silent mode

The silent-mode installation allows you to install specific configurations of the ZED SDK. It removes any display or manual configuration options during the installation process.

The installer can be launched in silent mode with the -- silent option (with a space between -- and silent).

$./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run -- silent

Installing Runtime version only

To install the ZED SDK without any static libraries, headers, tools, or samples, add the runtime_only option.

$./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run -- silent runtime_only

Installing SDK without checking CUDA

To install the ZED SDK without checking that CUDA is installed, add the skip_cuda option.

$./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run -- silent skip_cuda

Installing SDK without Object Detection

To install the ZED SDK without the AI module (required for Object Detection, Body Tracking, and Neural Depth), add the skip_od_module option.

$./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run -- silent skip_od_module

Installing SDK without Python Wrapper

To install the ZED SDK without the Python wrapper, add the skip_python option.

$./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run -- silent skip_python

Installing SDK without sl_hub

To install the ZED SDK without sl_hub, add the skip_hub option.

$./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run -- silent skip_hub

Installing SDK without Tools

To install the ZED SDK without any tools or samples, add the skip_tools option.

$./ZED_SDK_Tegra_L4TXX.X_vY.Y.Y.zstd.run -- silent skip_tools

Uninstall the ZED SDK

The ZED SDK installer does not provide an uninstall script. To remove it, delete the installation folder:

$sudo rm -rf /usr/local/zed

If you installed the Python API, you can also remove it with:

$python3 -m pip uninstall pyzed

CUDA is installed with JetPack and is not removed together with the ZED SDK. The GMSL2 driver for ZED X cameras is also installed separately; to remove it, refer to the ZED Link driver guide.