edfbrowser command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
edfbrowser: command not found
or when using sudo you get the following error message
sudo: edfbrowser: command not found
Solutions to edfbrowser: command not found
How To Fix edfbrowser: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu edfbrowser is provided by edfbrowser package.
edfbrowser is:
EDFbrowser is a viewer for medical timeseries storage files containing data such as EEG, EMG, and ECG signals. It supports EDF(+) and BDF(+) file formats. Apart from viewing the files, it also supports some editing operations and can convert the biomedical files to other formats.
To fix this problem, we can install more using the command below.
sudo apt-get -y install edfbrowser
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install edfbrowser.
sudo apt -y install edfbrowser
Or if you have aptitude installed you can use the following command.
sudo aptitude install edfbrowser
Summary
In this tutorial we learn how to fix edfbrowser command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.