convickt command not found

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

Introduction

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

convickt: command not found

or when using sudo you get the following error message

sudo: convickt: command not found

Solutions to convickt: command not found

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

In Ubuntu convickt is provided by intercal package.

intercal is:

This package is an implementation of the language INTERCAL, legendary for its perversity and horribleness, designed by Don Woods and James Lyon, who have since spent more than twenty years trying to live it down. This version adds COME FROM for extra flavor, and supports multithreading. Comes with language manual and examples including possibly the entire extant body of INTERCAL code.

This INTERCAL implementation works by compiling INTERCAL to C (thus de-obfuscating it), and then uses a C compiler to produce binaries (which are themselves possibly easier to read than the original intercal “source” code).

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

sudo apt-get -y install intercal

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

You can also use apt command to install intercal.

sudo apt -y install intercal

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

sudo aptitude install intercal

Summary

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