gla11y command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gla11y: command not found
or when using sudo you get the following error message
sudo: gla11y: command not found
Solutions to gla11y: command not found
How To Fix gla11y: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gla11y is provided by gla11y package.
gla11y is:
This tool checks accessibility of GtkBuilder .ui files produced e.g. by glade It looks for various issues, and notably missing or bogus labelling relations.
It can for instance be used in Continuous Integration checks to make sure not to introduce accessibility regressions.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gla11y
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gla11y.
sudo apt -y install gla11y
Or if you have aptitude installed you can use the following command.
sudo aptitude install gla11y
Summary
In this tutorial we learn how to fix gla11y command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.