bdy command not found

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

Introduction

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

bdy: command not found

or when using sudo you get the following error message

sudo: bdy: command not found

Solutions to bdy: command not found

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

In Ubuntu bdy is provided by geomview package.

geomview is:

Geomview is interactive geometry software which is particularly appropriate for mathematics research and education. In particular, geomview can display things in hyperbolic and spherical space as well as Euclidean space.

Geomview allows multiple independently controllable objects and cameras. It provides interactive control for motion, appearances (including lighting, shading, and materials), picking on an object, edge or vertex level, snapshots in SGI image file or Renderman RIB format, and adding or deleting objects is provided through direct mouse manipulation, control panels, and keyboard shortcuts. External programs can drive desired aspects of the viewer (such as continually loading changing geometry or controlling the motion of certain objects) while allowing interactive control of everything else.

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

sudo apt-get -y install geomview

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

You can also use apt command to install geomview.

sudo apt -y install geomview

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

sudo aptitude install geomview

Summary

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