Skip to content

Install on Linux

Open a terminal and run the command below to install the latest version of the Rokoko Device SDK.

Terminal window
curl -fsSL https://sdk-downloads.rokoko.com/latest/install-device-sdk.sh | sh

The install script will download the latest release of the SDK, extract it, and add the SDK’s bin directory to your PATH environment variable. This allows you to run the device driver and other SDK tools from any terminal window.

The SDK is installed in either

  • $XDG_DATA_HOME/rokoko-device-sdk (if$XDG_DATA_HOMEis set) or
  • $HOME/.local/share/rokoko-device-sdk otherwise

by default, but you can change this by setting the ROKOKO_SDK_HOME environment variable to a custom path before running the install script.

After the first time you install the SDK, you may need to restart your terminal to ensure that the rkk_device_driver executable is available in your PATH.

After installation, verify that the Rokoko Device SDK is installed correctly by checking that you can run the bundled device driver from the command line:

Terminal window
rkk_device_driver --version

This should result in the version number of the installed Rokoko Device driver being printed to the console. If you see an error, please check the installation steps and try again.

To update the SDK in the future, simply run the same install command again. The install script will handle downloading and installing the latest version, and will replace the existing installation while preserving your configuration and settings.