avra command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
avra: command not found
or when using sudo you get the following error message
sudo: avra: command not found
Solutions to avra: command not found
How To Fix avra: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu avra is provided by avra package.
avra is:
Avra is an assembler for the Atmel’s family of AVR 8-bit RISC microcontrollers. It is mostly compatible with Atmel’s own assembler, but adds new features such as better macro support and additional preprocessor directives.
To fix this problem, we can install more using the command below.
sudo apt-get -y install avra
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install avra.
sudo apt -y install avra
Or if you have aptitude installed you can use the following command.
sudo aptitude install avra
Summary
In this tutorial we learn how to fix avra command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.