sassc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sassc: command not found
or when using sudo you get the following error message
sudo: sassc: command not found
Solutions to sassc: command not found
How To Fix sassc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sassc is provided by sassc package.
sassc is:
SassC is a C/C++ port of the Sass engine. The point is to be simple, fast, and easy to integrate.
Sass is a pre-processing language for CSS. It allows you to write cleaner stylesheets and makes collaboration on your CSS a breeze.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sassc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sassc.
sudo apt -y install sassc
Or if you have aptitude installed you can use the following command.
sudo aptitude install sassc
Summary
In this tutorial we learn how to fix sassc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.