lxi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
lxi: command not found
or when using sudo you get the following error message
sudo: lxi: command not found
Solutions to lxi: command not found
How To Fix lxi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu lxi is provided by lxi-tools package.
lxi-tools is:
lxi-tools is collection of open source software tools that enables control of LXI-compatible instruments such as modern oscilloscopes, power supplies, spectrum analyzers etc.
To fix this problem, we can install more using the command below.
sudo apt-get -y install lxi-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install lxi-tools.
sudo apt -y install lxi-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install lxi-tools
Summary
In this tutorial we learn how to fix lxi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.