pcal command not found

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

Introduction

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

pcal: command not found

or when using sudo you get the following error message

sudo: pcal: command not found

Solutions to pcal: command not found

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

In Ubuntu pcal is provided by pcal package.

pcal is:

“Pcal” is a program to print PostScript calendars for any month and year. By default, it looks for a file in the home directory named “calendar” for entries with leading dates matching dates on the calendar, and prints any following text under the appropriate day.

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

sudo apt-get -y install pcal

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

You can also use apt command to install pcal.

sudo apt -y install pcal

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

sudo aptitude install pcal

Summary

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