lv2proc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lv2proc: command not found
or when using sudo you get the following error message
sudo: lv2proc: command not found
Solutions to lv2proc: command not found
How To Fix lv2proc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lv2proc is provided by lv2proc package.
lv2proc is:
LV2proc is a simple command line effect processor using LV2 plugins.
lv2proc generates an output sound file by applying a LV2 effect plugin to an input sound file.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lv2proc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lv2proc.
sudo apt -y install lv2proc
Or if you have aptitude installed you can use the following command.
sudo aptitude install lv2proc
Summary
In this tutorial we learn how to fix lv2proc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.