scrm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
scrm: command not found
or when using sudo you get the following error message
sudo: scrm: command not found
Solutions to scrm: command not found
How To Fix scrm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu scrm is provided by scrm package.
scrm is:
scrm simulates the evolution of genetic sequences.
It takes a neutral evolutionary model as input, and generates random sequences that evolved under the model. As coalescent simulator, it traces the ancestry of the sampled sequences backwards in time and is therefore extremely efficient. Compared to other coalescent simulators, it can simulate chromosome-scale sequences without a measureable reduction of genetic linkage between different sites.
To fix this problem, we can install more using the command below.
sudo apt-get -y install scrm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install scrm.
sudo apt -y install scrm
Or if you have aptitude installed you can use the following command.
sudo aptitude install scrm
Summary
In this tutorial we learn how to fix scrm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.