amberc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
amberc: command not found
or when using sudo you get the following error message
sudo: amberc: command not found
Solutions to amberc: command not found
How To Fix amberc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu amberc is provided by amber package.
amber is:
Amber is an elegant HTML templating engine for the Go Programming Language. It is inspired from HAML and Jade.
This package provides the /usr/bin/amberc command-line tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install amber
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install amber.
sudo apt -y install amber
Or if you have aptitude installed you can use the following command.
sudo aptitude install amber
Summary
In this tutorial we learn how to fix amberc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.