MMB command not found

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

Introduction

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

MMB: command not found

or when using sudo you get the following error message

sudo: MMB: command not found

Solutions to MMB: command not found

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

In Ubuntu MMB is provided by mmb package.

mmb is:

MacroMoleculeBuilder, previously known as RNABuilder, can be used for morphing, homology modeling, folding (e.g. using base pairing contacts), redesigning complexes, fitting to low-resolution density maps, predicting local rearrangements upon mutation, and many other applications.

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

sudo apt-get -y install mmb

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

You can also use apt command to install mmb.

sudo apt -y install mmb

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

sudo aptitude install mmb

Summary

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