How to Install ZED SDK on Nvidia Jetson

To use Stereolabs cameras on NVIDIA Jetson platforms, you need to:

Download and Install JetPack

Note: if you are working with a Stereolabs ZEDbox, please refer to the relative documentation.

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

Download and Install the ZED SDK

  • Download the ZED SDK for 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_JP4.3_v3.0.run
  • Run the ZED SDK installer.
$ ./ZED_SDK_JP4.3_v3.0.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 on dependencies, tools and samples installation. Type y for yes and n for no and hit Enter. Hit Enter to pick the default option.

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

Installing in silent mode

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 -- an silent).

$ ./ZED_SDK_JP4.3_v3.0.run -- silent`

Installing SDK without Tools

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

$ ./ZED_SDK_JP4.3_v3.0.run -- silent skip_tools`

Installing Runtime version only

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

$ ./ZED_SDK_JP4.3_v3.0.run -- silent runtime_only`