yade command not found

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

Introduction

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

yade: command not found

or when using sudo you get the following error message

sudo: yade: command not found

Solutions to yade: command not found

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

In Ubuntu yade is provided by yade package.

yade is:

Yet Another Dynamic Engine.

Extensible open-source framework for discrete numerical models, focused on Discrete Element Method. The computation parts are written in c++ using flexible object model, allowing independent implementation of new algorithms and interfaces. Python is used for rapid and concise scene construction, simulation control, postprocessing and debugging.

This package contains speed-optimized build of yade.

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

sudo apt-get -y install yade

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

You can also use apt command to install yade.

sudo apt -y install yade

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

sudo aptitude install yade

Summary

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