webmagick command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
webmagick: command not found
or when using sudo you get the following error message
sudo: webmagick: command not found
Solutions to webmagick: command not found
How To Fix webmagick: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu webmagick is provided by webmagick package.
webmagick is:
WebMagick provides a means of easily putting image collections on the Web. It recurses through directory trees, building HTML pages and imagemap (GIF or JPEG) files to allow the user to navigate through collections of thumbnail images (somewhat similar to ‘xv’) and select the images to view with a mouse click.
To fix this problem, we can install more using the command below.
sudo apt-get -y install webmagick
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install webmagick.
sudo apt -y install webmagick
Or if you have aptitude installed you can use the following command.
sudo aptitude install webmagick
Summary
In this tutorial we learn how to fix webmagick command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.