goby command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
goby: command not found
or when using sudo you get the following error message
sudo: goby: command not found
Solutions to goby: command not found
How To Fix goby: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu goby is provided by goby-java package.
goby-java is:
Goby is a next-gen data management framework designed to facilitate the implementation of efficient data analysis pipelines.
Goby provides very efficient file formats to store next-generation sequencing data and intermediary analysis results.
Goby also provides utilities that implement common next-gen data computations. These utilities are designed to be relatively easy to use, yet very efficient.
This package provides the entire Goby framework, including application programs (i.e., Goby modes). It is released under the GPL3 license.
To fix this problem, we can install more using the command below.
sudo apt-get -y install goby-java
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install goby-java.
sudo apt -y install goby-java
Or if you have aptitude installed you can use the following command.
sudo aptitude install goby-java
Summary
In this tutorial we learn how to fix goby command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.