voltron command not found

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

Introduction

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

voltron: command not found

or when using sudo you get the following error message

sudo: voltron: command not found

Solutions to voltron: command not found

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

In Ubuntu voltron is provided by voltron package.

voltron is:

Voltron is an extensible debugger UI toolkit written in Python. It aims to improve the user experience of various debuggers (LLDB, GDB, VDB and WinDbg) by enabling the attachment of utility views that can retrieve and display data from the debugger host. By running these views in other TTYs, you can build a customised debugger user interface to suit your needs.

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

sudo apt-get -y install voltron

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

You can also use apt command to install voltron.

sudo apt -y install voltron

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

sudo aptitude install voltron

Summary

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