hp48cc command not found

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

Introduction

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

hp48cc: command not found

or when using sudo you get the following error message

sudo: hp48cc: command not found

Solutions to hp48cc: command not found

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

In Ubuntu hp48cc is provided by hp48cc package.

hp48cc is:

`hp48cc’ is a C-like compiler that translates the input code into the HP48 RPN language. The language recognized by the compiler is only a small subset of the C language, with some non-standard extensions, but powerful enough to write complex programs simply.

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

sudo apt-get -y install hp48cc

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

You can also use apt command to install hp48cc.

sudo apt -y install hp48cc

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

sudo aptitude install hp48cc

Summary

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