xbs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xbs: command not found
or when using sudo you get the following error message
sudo: xbs: command not found
Solutions to xbs: command not found
How To Fix xbs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xbs is provided by xbs package.
xbs is:
xbs ball-and-sticks plotting program can create still and moving three dimensional models of molecules. X11 and PostScript output are available. Models can be rotated, scaled, etc. Various labeling, shading, lighting, coloring options are available.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xbs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xbs.
sudo apt -y install xbs
Or if you have aptitude installed you can use the following command.
sudo aptitude install xbs
Summary
In this tutorial we learn how to fix xbs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.