mbtg command not found

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

Introduction

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

mbtg: command not found

or when using sudo you get the following error message

sudo: mbtg: command not found

Solutions to mbtg: command not found

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

In Ubuntu mbtg is provided by mbt package.

mbt is:

MBT is a memory-based tagger-generator and tagger in one. The tagger-generator part can generate a sequence tagger on the basis of a training set of tagged sequences; the tagger part can tag new sequences. MBT can, for instance, be used to generate part-of-speech taggers or chunkers for natural language processing. Features:

  • Tagger generation: tagged text in, tagger out,
  • Optional feedback loop: feed previous tag decision back to input of next decision,
  • Easily customizable feature representation; can incorporate user-provided features,
  • Automatic generation of separate sub-taggers for known words and unknown words,
  • Can make use of full algorithmic parameters of TiMBL.

MBT is a product of the Centre of Language and Speech Technology (Radboud University Nijmegen, The Netherlands), the ILK Research Group (Tilburg University, The Netherlands) and the CLiPS Research Centre (University of Antwerp, Belgium).

If you do scientific research in natural language processing, MBT will likely be of use to you.

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

sudo apt-get -y install mbt

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

You can also use apt command to install mbt.

sudo apt -y install mbt

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

sudo aptitude install mbt

Summary

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