stylish-haskell command not found

In this troubleshooting guide we learn how to fix stylish-haskell command not found error message

Introduction

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

stylish-haskell: command not found

or when using sudo you get the following error message

sudo: stylish-haskell: command not found

Solutions to stylish-haskell: command not found

How To Fix stylish-haskell: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu stylish-haskell is provided by stylish-haskell package.

stylish-haskell is:

stylish-haskell prettifies Haskell code. A design goal is not getting in the user’s way, so it restricts itself to formatting only some parts of the Haskell code piped to it, such as import statements.

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

sudo apt-get -y install stylish-haskell

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

You can also use apt command to install stylish-haskell.

sudo apt -y install stylish-haskell

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

sudo aptitude install stylish-haskell

Summary

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