plink1 command not found

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

Introduction

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

plink1: command not found

or when using sudo you get the following error message

sudo: plink1: command not found

Solutions to plink1: command not found

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

In Ubuntu plink1 is provided by plink package.

plink is:

plink expects as input the data from SNP (single nucleotide polymorphism) chips of many individuals and their phenotypical description of a disease. It finds associations of single or pairs of DNA variations with a phenotype and can retrieve SNP annotation from an online source.

SNPs can evaluated individually or as pairs for their association with the disease phenotypes. The joint investigation of copy number variations is supported. A variety of statistical tests have been implemented.

Please note: The executable was renamed to plink1 because of a name clash. Please read more about this in /usr/share/doc/plink/README.Debian.

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

sudo apt-get -y install plink

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

You can also use apt command to install plink.

sudo apt -y install plink

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

sudo aptitude install plink

Summary

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