Attention

You are viewing an older version of the documentation. The latest version is 2.2.

Install Intel® Robotics SDK Deb packages

This section details steps to install Robotics SDK Deb packages.

Note

Before proceeding, ensure that you have first prepared the target system.


  1. Before using the Robotics SDK APT repositories, update the APT packages list:

    sudo apt update
    
    Copy to clipboard

    The APT package manager will download the latest list of packages available for all configured repositories.

    ../_images/apt-update.png

    Note

    If the APT package manager is unable to connect to the repositories, follow these APT troubleshooting tips:

    • Make sure that the system has network connectivity.

    • Make sure that port 80 is not blocked by a firewall.

    • Configure an APT proxy (if network traffic routes through a proxy server).

      To configure an APT proxy, add the following lines to a file at /etc/apt/apt.conf.d/proxy.conf (replace the placeholder as per your specific user and proxy server):

      Acquire:http:Proxy "http://user:password@proxy.server:port/";
      Acquire:https:Proxy "http://user:password@proxy.server:port/";
      
      Copy to clipboard

      To ensure proper proxy settings for other tools required during the package installation add the the required proxy settings to /etc/environment:

      http_proxy=http://user:password@proxy.server:port
      https_proxy=http://user:password@proxy.server:port
      no_proxy="localhost,127.0.0.1,127.0.0.0/8"
      
      Copy to clipboard

      After setting the proxy values in /etc/apt/apt.conf.d/proxy.conf and /etc/environment you will have to reboot the device, so these settings become effective.

  1. Choose the Robotics SDK Deb package to install.

    ros-humble-robotics-sdk

    The standard version of the Robotics SDK. This package includes almost everything except for a handful of tutorials and bag files.

    ros-humble-robotics-sdk-complete

    The complete version of the Robotics SDK. It also includes those items excluded from the standard version. Please note that the complete SDK downloads approximately 20GB of additional files.

  2. Install the chosen Robotics SDK Deb package

    Note

    Before you install ros-humble-robotics-sdk-complete (or any other packages that depend on OpenVINO), please read the information on Installing OpenVINO™ packages.

    Install command example:

    sudo apt install ros-humble-robotics-sdk
    
    Copy to clipboard

    The standard version of the Robotics SDK should generally download and install all files within just a few minutes. The complete version of the Robotics SDK will take several more minutes and consume significantly more network bandwidth.

    The actual installation time will vary greatly based primarily upon the number of packages that need to be installed and the network connection speed.

    ../_images/apt-install-ros-pkt.png