svgtune command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
svgtune: command not found
or when using sudo you get the following error message
sudo: svgtune: command not found
Solutions to svgtune: command not found
How To Fix svgtune: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu svgtune is provided by svgtune package.
svgtune is:
svgtune is a little helper to generate a set of .svg files out of a single .svg file, by tuning respective groups/layers visibility, transparency or anything else.
It might come very handy for generation of incremental figures to be embedded into the presentation in any format which inkscape could render using original .svg file (e.g. pdf, png).
To fix this problem, we can install more using the command below.
sudo apt-get -y install svgtune
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install svgtune.
sudo apt -y install svgtune
Or if you have aptitude installed you can use the following command.
sudo aptitude install svgtune
Summary
In this tutorial we learn how to fix svgtune command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.