avrp command not found

In this troubleshooting guide we learn how to fix avrp command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

avrp: command not found

or when using sudo you get the following error message

sudo: avrp: command not found

Solutions to avrp: command not found

How To Fix avrp: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu avrp is provided by avrp package.

avrp is:

Avrp is a FLASH/EEPROM programmer for Atmel’s family of AVR 8-bit RISC microcontrollers. It can also program the Atmel AT89 series microcontrollers. It supports at least four different programming devices including Atmel’s own AVR development board and in-circuit programming.

To fix this problem, we can install more using the command below.

sudo apt-get -y install avrp

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install avrp.

sudo apt -y install avrp

Or if you have aptitude installed you can use the following command.

sudo aptitude install avrp

Summary

In this tutorial we learn how to fix avrp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.