veusz command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
veusz: command not found
or when using sudo you get the following error message
sudo: veusz: command not found
Solutions to veusz: command not found
How To Fix veusz: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu veusz is provided by veusz package.
veusz is:
Veusz is a 2D and 3D scientific plotting and graphing package, designed to produce publication-ready PDF, SVG, Postscript and bitmap output. Veusz provides a GUI, command line and scripting interface (based on Python) to its plotting facilities. The plots are built using an object-based system to provide a consistent interface.
This package includes the main executable, documentation and examples.
To fix this problem, we can install more using the command below.
sudo apt-get -y install veusz
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install veusz.
sudo apt -y install veusz
Or if you have aptitude installed you can use the following command.
sudo aptitude install veusz
Summary
In this tutorial we learn how to fix veusz command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.