wnb command not found

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

Introduction

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

wnb: command not found

or when using sudo you get the following error message

sudo: wnb: command not found

Solutions to wnb: command not found

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

In Ubuntu wnb is provided by wordnet-gui package.

wordnet-gui is:

WordNet(C) is an on-line lexical reference system whose design is inspired by current psycholinguistic theories of human lexical memory. English nouns, verbs, adjectives and adverbs are organized into synonym sets, each representing one underlying lexical concept. Different relations link the synonym sets.

WordNet was developed by the Cognitive Science Laboratory at Princeton University under the direction of Professor George A. Miller (Principal Investigator).

WordNet is considered to be the most important resource available to researchers in computational linguistics, text analysis, and many related areas.

This package contains a Tcl/Tk Gui to browse wordnet dictionary.

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

sudo apt-get -y install wordnet-gui

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

You can also use apt command to install wordnet-gui.

sudo apt -y install wordnet-gui

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

sudo aptitude install wordnet-gui

Summary

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