QLogo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
QLogo: command not found
or when using sudo you get the following error message
sudo: QLogo: command not found
Solutions to QLogo: command not found
How To Fix QLogo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu QLogo is provided by qlogo package.
qlogo is:
QLogo is an interpreter for the Logo language written in C++ using Qt and OpenGL. Specifically, it mimics (as reasonably as possible) the UCBLogo interpreter developed at U.C. Berkeley. In fact, the UCBLogo manual describes about 99.9% of the functionality. You can find the UCBLogo Manual here: http://people.eecs.berkeley.edu/~bh/usermanual
To fix this problem, we can install more using the command below.
sudo apt-get -y install qlogo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qlogo.
sudo apt -y install qlogo
Or if you have aptitude installed you can use the following command.
sudo aptitude install qlogo
Summary
In this tutorial we learn how to fix QLogo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.