urdf_mem_test command not found

In this troubleshooting guide we learn how to fix urdf_mem_test command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

urdf_mem_test: command not found

or when using sudo you get the following error message

sudo: urdf_mem_test: command not found

Solutions to urdf_mem_test: command not found

How To Fix urdf_mem_test: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu urdf_mem_test is provided by liburdfdom-tools package.

liburdfdom-tools is:

The URDF (U-Robot Description Format) library provides core data structures and a simple XML parsers for populating the class data structures from an URDF file.

This package contains additional tools.

To fix this problem, we can install more using the command below.

sudo apt-get -y install liburdfdom-tools

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install liburdfdom-tools.

sudo apt -y install liburdfdom-tools

Or if you have aptitude installed you can use the following command.

sudo aptitude install liburdfdom-tools

Summary

In this tutorial we learn how to fix urdf_mem_test command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.