palinear command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
palinear: command not found
or when using sudo you get the following error message
sudo: palinear: command not found
Solutions to palinear: command not found
How To Fix palinear: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu palinear is provided by probabel package.
probabel is:
The ProbABEL package is part of the GenABEL project for analysis of genome-wide data. ProbABEL is used to run GWAS. Using files in filevector/DatABEL format even allows for running GWAS on computers with only a few GB of RAM.
To fix this problem, we can install more using the command below.
sudo apt-get -y install probabel
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install probabel.
sudo apt -y install probabel
Or if you have aptitude installed you can use the following command.
sudo aptitude install probabel
Summary
In this tutorial we learn how to fix palinear command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.