admesh command not found

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

Introduction

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

admesh: command not found

or when using sudo you get the following error message

sudo: admesh: command not found

Solutions to admesh: command not found

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

In Ubuntu admesh is provided by admesh package.

admesh is:

Currently, ADMesh only reads the STL file format that is used for rapid prototyping applications, although it can write STL, VRML, OFF, and DXF files. Some features of admesh are: Fill holes in the mesh by adding facets. Repair facets by connecting nearby facets. Repair normal directions (i.e. facets should be CCW) Remove degenerate facets (i.e. facets with 2 or more vertices equal)

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

sudo apt-get -y install admesh

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

You can also use apt command to install admesh.

sudo apt -y install admesh

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

sudo aptitude install admesh

Summary

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