mssstest command not found

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

Introduction

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

mssstest: command not found

or when using sudo you get the following error message

sudo: mssstest: command not found

Solutions to mssstest: command not found

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

In Ubuntu mssstest is provided by mssstest package.

mssstest is:

MSSStest is a program for implementing the method described in the article The Multiple Sclerosis Severity Score. R. Roxburgh S. Seaman et al. (2004), accepted for publication by Neurology. It calculates MSSS scores and uses these scores to test for differences between disease progression rates in different groups defined by genotype at some locus. A brief description of the method is given below.

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

sudo apt-get -y install mssstest

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

You can also use apt command to install mssstest.

sudo apt -y install mssstest

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

sudo aptitude install mssstest

Summary

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