voikkovfstc command not found

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

Introduction

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

voikkovfstc: command not found

or when using sudo you get the following error message

sudo: voikkovfstc: command not found

Solutions to voikkovfstc: command not found

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

In Ubuntu voikkovfstc is provided by libvoikko-dev package.

libvoikko-dev is:

Libvoikko is a library of free natural language processing tools. It aims to provide support for languages that are not well served by other existing free linguistic tools.

This package contains the files needed to build or develop applications that use Voikko.

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

sudo apt-get -y install libvoikko-dev

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

You can also use apt command to install libvoikko-dev.

sudo apt -y install libvoikko-dev

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

sudo aptitude install libvoikko-dev

Summary

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