iitii command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
iitii: command not found
or when using sudo you get the following error message
sudo: iitii: command not found
Solutions to iitii: command not found
How To Fix iitii: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu iitii is provided by iitii package.
iitii is:
Iitii is a data structure for indexing begin/end position intervals, such as genomic feature annotations, and answering requests for all items overlapping a query interval. Building on cgranges by Heng Li, iitii explores ideas from DBMS interpolation search and learned index structures to speed up queries on large datasets.
To fix this problem, we can install more using the command below.
sudo apt-get -y install iitii
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install iitii.
sudo apt -y install iitii
Or if you have aptitude installed you can use the following command.
sudo aptitude install iitii
Summary
In this tutorial we learn how to fix iitii command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.