progvis command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
progvis: command not found
or when using sudo you get the following error message
sudo: progvis: command not found
Solutions to progvis: command not found
How To Fix progvis: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu progvis is provided by progvis package.
progvis is:
A program visualization tool written in Storm. Supports a subset of C/C++, and other languages supported by the Storm language platform. Aimed at showing how concurrent programs interact with pointers/references and other fundamental programming concepts.
To fix this problem, we can install more using the command below.
sudo apt-get -y install progvis
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install progvis.
sudo apt -y install progvis
Or if you have aptitude installed you can use the following command.
sudo aptitude install progvis
Summary
In this tutorial we learn how to fix progvis command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.