qube command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
qube: command not found
or when using sudo you get the following error message
sudo: qube: command not found
Solutions to qube: command not found
How To Fix qube: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu qube is provided by avogadro-utils package.
avogadro-utils is:
Avogadro is a molecular graphics and modelling system targeted at small to medium molecules. It can visualize properties like molecular orbitals or electrostatic potentials and features an intuitive molecular builder.
This package provides avogadro utility programs: avobabel avocjsontocml bodrparse encodefile qube resdataparse
To fix this problem, we can install more using the command below.
sudo apt-get -y install avogadro-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install avogadro-utils.
sudo apt -y install avogadro-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install avogadro-utils
Summary
In this tutorial we learn how to fix qube command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.