MicrobeGPS command not found

In this troubleshooting guide we learn how to fix MicrobeGPS command not found error message

Introduction

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

MicrobeGPS: command not found

or when using sudo you get the following error message

sudo: MicrobeGPS: command not found

Solutions to MicrobeGPS: command not found

How To Fix MicrobeGPS: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu MicrobeGPS is provided by microbegps package.

microbegps is:

MicrobeGPS is a bioinformatics tool for the analysis of metagenomic sequencing data. The goal is to profile the composition of metagenomic communities as accurately as possible and present the results to the user in a convenient manner. One main focus is reliability: the tool calculates quality metrics for the estimated candidates and allows the user to identify false candidates easily.

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

sudo apt-get -y install microbegps

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

You can also use apt command to install microbegps.

sudo apt -y install microbegps

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

sudo aptitude install microbegps

Summary

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