avogen command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
avogen: command not found
or when using sudo you get the following error message
sudo: avogen: command not found
Solutions to avogen: command not found
How To Fix avogen: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu avogen is provided by avo package.
avo is:
This is the program package of avo.
avo makes high-performance Go assembly easier to write, review and maintain. The avo package presents a familiar assembly-like interface that simplifies development without sacrificing performance:
- Use Go control structures for assembly generation; avo programs are Go programs
- Register allocation: write functions with virtual registers and avo assigns physical registers for you
- Automatically load arguments and store return values: ensure memory offsets are correct for complex structures
- Generation of stub files to interface with your Go package
To fix this problem, we can install more using the command below.
sudo apt-get -y install avo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install avo.
sudo apt -y install avo
Or if you have aptitude installed you can use the following command.
sudo aptitude install avo
Summary
In this tutorial we learn how to fix avogen command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.