goo command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
goo: command not found
or when using sudo you get the following error message
sudo: goo: command not found
Solutions to goo: command not found
How To Fix goo: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu goo is provided by goo package.
goo is:
GOO is a dynamic, type-based, object-oriented language in the same family as Dylan and Scheme. It is designed to be simple, productive, powerful, extensible, dynamic, efficient, and real-time.
Its main goal is to offer the best of both scripting and delivery languages, while at the same time incorporating an extreme back-to-basics philosophy.
This package contains the GOO interpreter and compiler, and documentation for the language and these programs.
To fix this problem, we can install more using the command below.
sudo apt-get -y install goo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install goo.
sudo apt -y install goo
Or if you have aptitude installed you can use the following command.
sudo aptitude install goo
Summary
In this tutorial we learn how to fix goo command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.