pem command not found

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

Introduction

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

pem: command not found

or when using sudo you get the following error message

sudo: pem: command not found

Solutions to pem: command not found

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

In Ubuntu pem is provided by pem package.

pem is:

This is a handy tool to help you keep track of your personal income and expenses. It is a command line alternative to other personal finance and money managers.

On GNU/Linux and other Unix-like systems, Pem works by storing the details in a CSV file placed in the ~/.pem directory under your $HOME directory. Each such file is named after the current month, and is automatically created by Pem when you enter the first record for a month. It is not advisable to edit these files by hand.

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

sudo apt-get -y install pem

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

You can also use apt command to install pem.

sudo apt -y install pem

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

sudo aptitude install pem

Summary

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