Developer Packages

Use this guide when you are consuming AstuteDDS as a packaged SDK on customer systems.

Install Developer Package

Package filenames include a version. If you are unsure which file to install, list matching packages in your download directory:

ls astutedds-dev-*

Windows (Developer Package)

msiexec /i astutedds-dev-*-windows-x64.msi

RHEL / Rocky / AlmaLinux (RPM)

sudo dnf install ./astutedds-dev-*-x86_64.rpm

Debian / Ubuntu (DEB)

sudo dpkg -i astutedds-dev_*_amd64.deb
sudo apt-get install -f

Verify Installed Tools

astutedds-idl --help

If you also installed Astute Inspect, verify:

astutedds-inspect -h

If your tool package includes discovery diagnostics, you can also verify:

astutedds-discovery-dump --help

Verify CMake Package Discovery

Before building your own application, verify CMake can resolve the installed AstuteDDS package:

find_package(AstuteDDS REQUIRED)

If find_package fails, use the CMake prefix troubleshooting in First Application.

Build Your First Application

After installation, follow the full publisher/subscriber CMake walkthrough in First Application.