ost command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ost: command not found
or when using sudo you get the following error message
sudo: ost: command not found
Solutions to ost: command not found
How To Fix ost: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ost is provided by openstructure package.
openstructure is:
OpenStructure aims to provide an open-source, modular, flexible, molecular modelling and visualization environment. It is targeted at interested method developers in the field of structural bioinformatics.
To fix this problem, we can install more using the command below.
sudo apt-get -y install openstructure
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install openstructure.
sudo apt -y install openstructure
Or if you have aptitude installed you can use the following command.
sudo aptitude install openstructure
Summary
In this tutorial we learn how to fix ost command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.