ucto command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ucto: command not found
or when using sudo you get the following error message
sudo: ucto: command not found
Solutions to ucto: command not found
How To Fix ucto: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ucto is provided by ucto package.
ucto is:
Ucto can tokenize UTF-8 encoded text files (i.e. separate words from punctuation, split sentences, generate n-grams), and offers several other basic preprocessing steps that make your text suited for further processing such as indexing, part-of-speech tagging, or machine translation.
This package provides the command-line tool itself.
Ucto was written by Maarten van Gompel and Ko van der Sloot. Work on Ucto was funded by NWO, the Netherlands Organisation for Scientific Research, under the Implicit Linguistics project, the CLARIN-NL program, and the CLARIAH project.
Ucto is a product of the Centre of Language and Speech Technology (Radboud University Nijmegen), and previously the ILK Research Group (Tilburg University, The Netherlands).
If you are interested in machine parsing of UTF-8 encoded text files, e.g. to do scientific research in natural language processing, ucto will likely be of use to you.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ucto
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ucto.
sudo apt -y install ucto
Or if you have aptitude installed you can use the following command.
sudo aptitude install ucto
Summary
In this tutorial we learn how to fix ucto command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.