guile-gnome-2 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
guile-gnome-2: command not found
or when using sudo you get the following error message
sudo: guile-gnome-2: command not found
Solutions to guile-gnome-2: command not found
How To Fix guile-gnome-2: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu guile-gnome-2 is provided by guile-gnome2-glib package.
guile-gnome2-glib is:
This package contains Guile modules that provide access to the GLib library, including its object system, GObject.
To fix this problem, we can install more using the command below.
sudo apt-get -y install guile-gnome2-glib
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install guile-gnome2-glib.
sudo apt -y install guile-gnome2-glib
Or if you have aptitude installed you can use the following command.
sudo aptitude install guile-gnome2-glib
Summary
In this tutorial we learn how to fix guile-gnome-2 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.