pulseview command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pulseview: command not found
or when using sudo you get the following error message
sudo: pulseview: command not found
Solutions to pulseview: command not found
How To Fix pulseview: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pulseview is provided by pulseview package.
pulseview is:
PulseView is a GUI for sigrok that supports logic analyzers, oscilloscopes, and MSOs.
It can acquire samples from a supported device and display them, load and display captures from existing sigrok *.sr files, as well as run protocol decoders and display their annotations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pulseview
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pulseview.
sudo apt -y install pulseview
Or if you have aptitude installed you can use the following command.
sudo aptitude install pulseview
Summary
In this tutorial we learn how to fix pulseview command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.