aspic command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aspic: command not found
or when using sudo you get the following error message
sudo: aspic: command not found
Solutions to aspic: command not found
How To Fix aspic: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aspic is provided by aspic package.
aspic is:
Aspic is a program that generates line art images from a text description of a picture that contains commands such as “line”, “box”, “circle”, and “arc”. Aspic’s concept is similar to the “pic” command. Output is either encapsulated PostScript, or Scalable Vector Graphics (SVG). Quite complex pictures can be constructed from Aspic’s primitives, which include facilities for positioning text alongside graphics, and the use of colour.
To fix this problem, we can install more using the command below.
sudo apt-get -y install aspic
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aspic.
sudo apt -y install aspic
Or if you have aptitude installed you can use the following command.
sudo aptitude install aspic
Summary
In this tutorial we learn how to fix aspic command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.