gbnlprobit command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gbnlprobit: command not found
or when using sudo you get the following error message
sudo: gbnlprobit: command not found
Solutions to gbnlprobit: command not found
How To Fix gbnlprobit: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gbnlprobit is provided by gbutils package.
gbutils is:
A set of command line utilities for the manipulation and statistical analysis of data. These utilities read data from standard input in an ASCII format and print the result in ASCII format to standard output.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gbutils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gbutils.
sudo apt -y install gbutils
Or if you have aptitude installed you can use the following command.
sudo aptitude install gbutils
Summary
In this tutorial we learn how to fix gbnlprobit command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.