ace command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ace: command not found
or when using sudo you get the following error message
sudo: ace: command not found
Solutions to ace: command not found
How To Fix ace: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ace is provided by ace package.
ace is:
Ace is an HTML template engine for Go. This is inspired by Slim (http://slim-lang.com/) and Jade (http://jade-lang.com/). This is a refinement of Gold (http://gold.yoss.si/).
Example:
= doctype html html lang=en head title Hello Ace = css h1 { color: blue; } body h1 {{.Msg}} #container.wrapper p.. Ace is an HTML template engine for Go. This engine simplifies HTML coding in Go web application development. = javascript console.log(‘Welcome to Ace’);
This package provides the /usr/bin/ace command-line tool and example files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ace
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ace.
sudo apt -y install ace
Or if you have aptitude installed you can use the following command.
sudo aptitude install ace
Summary
In this tutorial we learn how to fix ace command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.