glogic command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
glogic: command not found
or when using sudo you get the following error message
sudo: glogic: command not found
Solutions to glogic: command not found
How To Fix glogic: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu glogic is provided by glogic package.
glogic is:
gLogic is an educational graphical logic circuit simulator developed with Python and GTK+. This program simulates logic circuits containing basic components (e.g. NOT, AND, OR) and many advanced components like flip-flop.
To fix this problem, we can install more using the command below.
sudo apt-get -y install glogic
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install glogic.
sudo apt -y install glogic
Or if you have aptitude installed you can use the following command.
sudo aptitude install glogic
Summary
In this tutorial we learn how to fix glogic command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.