art command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
art: command not found
or when using sudo you get the following error message
sudo: art: command not found
Solutions to art: command not found
How To Fix art: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu art is provided by artemis package.
artemis is:
Artemis is a genome browser and annotation tool that allows visualisation of sequence features, next generation data and the results of analyses within the context of the sequence, and also its six-frame translation.
This package includes the Artemis genome browser, the Artemis Comparison Tool (ACT), and the DNAplotter and BamView utilities.
To fix this problem, we can install more using the command below.
sudo apt-get -y install artemis
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install artemis.
sudo apt -y install artemis
Or if you have aptitude installed you can use the following command.
sudo aptitude install artemis
Summary
In this tutorial we learn how to fix art command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.