voro++ command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
voro++: command not found
or when using sudo you get the following error message
sudo: voro++: command not found
Solutions to voro++: command not found
How To Fix voro++: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu voro++ is provided by voro++ package.
voro++ is:
Voro++ is a software library for carrying out three-dimensional computations of the Voronoi tessellation. A distinguishing feature of the Voro++ library is that it carries out cell-based calculations, computing the Voronoi cell for each particle individually. It is particularly well-suited for applications that rely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, number of faces) can be used to analyze a system of particles.
To fix this problem, we can install more using the command below.
sudo apt-get -y install voro++
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install voro++.
sudo apt -y install voro++
Or if you have aptitude installed you can use the following command.
sudo aptitude install voro++
Summary
In this tutorial we learn how to fix voro++ command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.