gbs3.gambas command not found

In this troubleshooting guide we learn how to fix gbs3.gambas command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

gbs3.gambas: command not found

or when using sudo you get the following error message

sudo: gbs3.gambas: command not found

Solutions to gbs3.gambas: command not found

How To Fix gbs3.gambas: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu gbs3.gambas is provided by gambas3-scripter package.

gambas3-scripter is:

Gambas is a free development environment based on a Basic interpreter with object extensions, like Visual Basic(tm) (but it is NOT a clone!).

This package includes the needed files to use Gambas as a scripting language.

To fix this problem, we can install more using the command below.

sudo apt-get -y install gambas3-scripter

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install gambas3-scripter.

sudo apt -y install gambas3-scripter

Or if you have aptitude installed you can use the following command.

sudo aptitude install gambas3-scripter

Summary

In this tutorial we learn how to fix gbs3.gambas command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.