sdranlib command not found

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

Introduction

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

sdranlib: command not found

or when using sudo you get the following error message

sudo: sdranlib: command not found

Solutions to sdranlib: command not found

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

In Ubuntu sdranlib is provided by sdcc package.

sdcc is:

SDCC is a C compiler for the Intel MCS51 family, HC08, PIC, GameBoy Z80, DS80S390, Z80, Z180 and STM8 microcontrollers.

This package includes the compiler, assemblers and linkers.

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

sudo apt-get -y install sdcc

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

You can also use apt command to install sdcc.

sudo apt -y install sdcc

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

sudo aptitude install sdcc

Summary

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