innoextract command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
innoextract: command not found
or when using sudo you get the following error message
sudo: innoextract: command not found
Solutions to innoextract: command not found
How To Fix innoextract: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu innoextract is provided by innoextract package.
innoextract is:
Inno Setup is a tool to create installers for Microsoft Windows applications. Inno Extracts allows one to extract such installers under non-windows systems without running the actual installer using wine. Inno Extract currently supports installers created by Inno Setup 1.2.10 to 5.6.0.
To fix this problem, we can install more using the command below.
sudo apt-get -y install innoextract
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install innoextract.
sudo apt -y install innoextract
Or if you have aptitude installed you can use the following command.
sudo aptitude install innoextract
Summary
In this tutorial we learn how to fix innoextract command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.