pixelize command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pixelize: command not found
or when using sudo you get the following error message
sudo: pixelize: command not found
Solutions to pixelize: command not found
How To Fix pixelize: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pixelize is provided by pixelize package.
pixelize is:
Pixelize is a program that will use many scaled down images to try to duplicate, as closely as possible, another image.
Pixelize works by splitting up the image you want rendered (or duplicated) into a grid of small rectangular areas. Each area is analyzed, and replaced with an image chosen from a large database of images. Pixelize tries to pick images that best match each area.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pixelize
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pixelize.
sudo apt -y install pixelize
Or if you have aptitude installed you can use the following command.
sudo aptitude install pixelize
Summary
In this tutorial we learn how to fix pixelize command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.