tortoize command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tortoize: command not found
or when using sudo you get the following error message
sudo: tortoize: command not found
Solutions to tortoize: command not found
How To Fix tortoize: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tortoize is provided by tortoize package.
tortoize is:
Tortoize validates protein structure models by checking the Ramachandran plot and side-chain rotamer distributions. Quality Z-scores are given at the residue level and at the model level (ramachandran-z and torsions-z). Higher scores are better. To compare models or to describe the reliability of the model Z-scores jackknife- based standard deviations are also reported (ramachandran-jackknife-sd and torsion-jackknife-sd).
To fix this problem, we can install more using the command below.
sudo apt-get -y install tortoize
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tortoize.
sudo apt -y install tortoize
Or if you have aptitude installed you can use the following command.
sudo aptitude install tortoize
Summary
In this tutorial we learn how to fix tortoize command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.