glade-previewer command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
glade-previewer: command not found
or when using sudo you get the following error message
sudo: glade-previewer: command not found
Solutions to glade-previewer: command not found
How To Fix glade-previewer: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu glade-previewer is provided by glade package.
glade is:
Glade is a RAD tool to enable quick and easy development of user interfaces for the GTK+ toolkit.
The user interfaces designed in Glade are stored in the well-known XML format, enabling easy integration with external tools. You will probably want to use it with tools such as GtkBuilder, which can load the XML files and create the interfaces at runtime.
This version is more modular than previous ones, so you can install modules to add additional widgets for Glade to use.
To fix this problem, we can install more using the command below.
sudo apt-get -y install glade
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install glade.
sudo apt -y install glade
Or if you have aptitude installed you can use the following command.
sudo aptitude install glade
Summary
In this tutorial we learn how to fix glade-previewer command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.