Installation
RBLN SDK provides a runtime binding to the C/C++ language for applications where Python runtime cannot be used or very low latency is required.
The RBLN SDK C/C++ Runtime API
is currently available on Debian/Ubuntu OS, and it can be installed via the APT repository by adding the official Rebellion GPG key as shown below:
-
Add Rebellions official GPG key:
| $ sudo apt-get update
$ jsudo apt-get install ca-certificates curl
$ sudo install -m 0755 -d /etc/apt/keyrings
$ sudo curl -fsSL https://nexus.rebellions.ai/repository/raw-public/rebellions.asc -o /etc/apt/keyrings/rebellions.asc
$ sudo chmod a+r /etc/apt/keyrings/rebellions.asc
|
-
Add the repository to Apt sources:
| $ echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/rebellions.asc] https://nexus.rebellions.ai/repository/apt-public/ stable main" | \
sudo tee /etc/apt/sources.list.d/rebellions-apt-public.list > /dev/null
|
-
Update Apt repository
-
Install the package
| $ sudo apt-get install rbln-sdk
|