pysassc command not found

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

Introduction

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

pysassc: command not found

or when using sudo you get the following error message

sudo: pysassc: command not found

Solutions to pysassc: command not found

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

In Ubuntu pysassc is provided by pysassc package.

pysassc is:

This package provides a simple Python script to access libsass functionnalities. Libsass (written in C/C++ by Hampton Catlin and Aaron Leung). It’s very straightforward and there isn’t any headache related Python distribution/deployment.

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

sudo apt-get -y install pysassc

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

You can also use apt command to install pysassc.

sudo apt -y install pysassc

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

sudo aptitude install pysassc

Summary

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