cutycapt command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cutycapt: command not found
or when using sudo you get the following error message
sudo: cutycapt: command not found
Solutions to cutycapt: command not found
How To Fix cutycapt: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cutycapt is provided by cutycapt package.
cutycapt is:
CutyCapt is a small cross-platform command-line utility to capture WebKit’s rendering of a web page into a variety of vector and bitmap formats, including SVG, PDF, PS, PNG, JPEG, TIFF, GIF, and BMP.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cutycapt
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cutycapt.
sudo apt -y install cutycapt
Or if you have aptitude installed you can use the following command.
sudo aptitude install cutycapt
Summary
In this tutorial we learn how to fix cutycapt command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.