nickle command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
nickle: command not found
or when using sudo you get the following error message
sudo: nickle: command not found
Solutions to nickle: command not found
How To Fix nickle: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu nickle is provided by nickle package.
nickle is:
Nickle is a language with powerful programming and scripting capabilities. Nickle supports a variety of datatypes, especially arbitrary precision integers, rationals, and imprecise reals. The input language vaguely resembles C. Some things in C which do not translate easily are different, some design choices have been made differently, and a very few features are simply missing.
To fix this problem, we can install more using the command below.
sudo apt-get -y install nickle
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install nickle.
sudo apt -y install nickle
Or if you have aptitude installed you can use the following command.
sudo aptitude install nickle
Summary
In this tutorial we learn how to fix nickle command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.