uisp command not found

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

Introduction

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

uisp: command not found

or when using sudo you get the following error message

sudo: uisp: command not found

Solutions to uisp: command not found

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

In Ubuntu uisp is provided by uisp package.

uisp is:

This utility is required to program AVR chips with object code created by the ava assembler/linker, gas, or gcc. It supports in-system programming, Atmel’s prototype board/programmer (stk500), and many other extremely low-cost parallel port programmers. It can also be used to program Atmel’s AT89S51 and AT89S52.

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

sudo apt-get -y install uisp

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

You can also use apt command to install uisp.

sudo apt -y install uisp

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

sudo aptitude install uisp

Summary

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