lessp command not found

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

Introduction

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

lessp: command not found

or when using sudo you get the following error message

sudo: lessp: command not found

Solutions to lessp: command not found

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

In Ubuntu lessp is provided by libcss-lessp-perl package.

libcss-lessp-perl is:

CSS::LESSp provides helper function which allows parsing and compiling of LESS files into CSS.

This package also provides binary lessp which can be used to compile LESS files into CSS. Advantage of having it in perl is it is extremely fast compared to ruby-based less.

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

sudo apt-get -y install libcss-lessp-perl

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

You can also use apt command to install libcss-lessp-perl.

sudo apt -y install libcss-lessp-perl

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

sudo aptitude install libcss-lessp-perl

Summary

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