icont command not found

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

Introduction

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

icont: command not found

or when using sudo you get the following error message

sudo: icont: command not found

Solutions to icont: command not found

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

In Ubuntu icont is provided by icont package.

icont is:

Ideal for both complex nonnumerical applications and for situations where users need quick solutions with a minimum of programming effort, Icon is a high-level, general purpose programming language with a syntax similar to Pascal and C. Its applications include: rapid prototyping, analyzing natural languages, generating computer programs, and artificial intelligence. (From the back cover of the book “The Icon Programming Language,” by Griswold and Griswold.)

This package contains the Icon translator, which converts Icon source code into ucode that can then be executed with the help of the iconx program.

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

sudo apt-get -y install icont

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

You can also use apt command to install icont.

sudo apt -y install icont

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

sudo aptitude install icont

Summary

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