lsc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lsc: command not found
or when using sudo you get the following error message
sudo: lsc: command not found
Solutions to lsc: command not found
How To Fix lsc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lsc is provided by livescript package.
livescript is:
It has a straightforward mapping to JavaScript and allows you to write expressive code devoid of repetitive boilerplate. While LiveScript adds many features to assist in functional style programming, it also has many improvements for object oriented and imperative programming.
Node.js is an event-based server-side JavaScript engine.
To fix this problem, we can install more using the command below.
sudo apt-get -y install livescript
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install livescript.
sudo apt -y install livescript
Or if you have aptitude installed you can use the following command.
sudo aptitude install livescript
Summary
In this tutorial we learn how to fix lsc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.