avr-man command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
avr-man: command not found
or when using sudo you get the following error message
sudo: avr-man: command not found
Solutions to avr-man: command not found
How To Fix avr-man: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu avr-man is provided by avr-libc package.
avr-libc is:
Standard library used to the development of C programs for the Atmel AVR micro controllers. This package contains static libraries as well as the header files needed.
To fix this problem, we can install more using the command below.
sudo apt-get -y install avr-libc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install avr-libc.
sudo apt -y install avr-libc
Or if you have aptitude installed you can use the following command.
sudo aptitude install avr-libc
Summary
In this tutorial we learn how to fix avr-man command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.