ign_remotery_vis command not found

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

Introduction

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

ign_remotery_vis: command not found

or when using sudo you get the following error message

sudo: ign_remotery_vis: command not found

Solutions to ign_remotery_vis: command not found

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

In Ubuntu ign_remotery_vis is provided by libignition-common3-dev package.

libignition-common3-dev is:

Ignition common is a component in the Ignition framework, a set of libraries designed to rapidly develop robot applications. A collection of useful classes and functions for handling many command tasks. This includes parsing 3D mesh files, managing console output, and using PID controllers.

Metapackage for development. Includes events and profiler.

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

sudo apt-get -y install libignition-common3-dev

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

You can also use apt command to install libignition-common3-dev.

sudo apt -y install libignition-common3-dev

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

sudo aptitude install libignition-common3-dev

Summary

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