aasvg command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aasvg: command not found
or when using sudo you get the following error message
sudo: aasvg: command not found
Solutions to aasvg: command not found
How To Fix aasvg: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aasvg is provided by aasvg package.
aasvg is:
A command line tool to convert ASCII art diagrams into SVG.
This is a useful tool for making simple diagrams that render in simple text viewers, but also look clean in a more sophisticated format.
It can be used in combination with ruby-kramdown-rfc2629 and xml2rfc for generating SVG diagrams in RFC documents.
To fix this problem, we can install more using the command below.
sudo apt-get -y install aasvg
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aasvg.
sudo apt -y install aasvg
Or if you have aptitude installed you can use the following command.
sudo aptitude install aasvg
Summary
In this tutorial we learn how to fix aasvg command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.