hsbrainfuck command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
hsbrainfuck: command not found
or when using sudo you get the following error message
sudo: hsbrainfuck: command not found
Solutions to hsbrainfuck: command not found
How To Fix hsbrainfuck: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu hsbrainfuck is provided by hsbrainfuck package.
hsbrainfuck is:
This package provides an interpreter for the Brainfuck programming language, written in the pure, lazy, functional language Haskell.
To fix this problem, we can install more using the command below.
sudo apt-get -y install hsbrainfuck
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install hsbrainfuck.
sudo apt -y install hsbrainfuck
Or if you have aptitude installed you can use the following command.
sudo aptitude install hsbrainfuck
Summary
In this tutorial we learn how to fix hsbrainfuck command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.