mbtserver command not found

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

Introduction

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

mbtserver: command not found

or when using sudo you get the following error message

sudo: mbtserver: command not found

Solutions to mbtserver: command not found

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

In Ubuntu mbtserver is provided by mbtserver package.

mbtserver is:

MbtServer extends Mbt with a server layer, running as a TCP server. Mbt is a memory-based tagger-generator and tagger for natural language processing. MbtServer provides the possibility to access a trained tagger from multiple sessions. It also allows one to run and access different taggers in parallel.

MbtServer is a product of the Centre for 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, MbtServer will likely be of use to you.

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

sudo apt-get -y install mbtserver

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

You can also use apt command to install mbtserver.

sudo apt -y install mbtserver

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

sudo aptitude install mbtserver

Summary

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