pakcs command not found

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

Introduction

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

pakcs: command not found

or when using sudo you get the following error message

sudo: pakcs: command not found

Solutions to pakcs: command not found

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

In Ubuntu pakcs is provided by pakcs package.

pakcs is:

PAKCS is an implementation of the multi-paradigm declarative language Curry jointly developed by the Portland State University, the Aachen University of Technology, and the University of Kiel. Although this is not a highly optimized implementation but based on a high-level compilation of Curry programs into Prolog programs, it is not a toy implementation: PAKCS has been used for a variety of applications so far (e.g., graphical programming environments, an object-oriented front-end for Curry, partial evaluators, database applications, HTML programming with dynamic web pages, prototyping embedded systems). The size of all current Curry applications implemented with PAKCS amounts to more than 150,000 lines (or 8 mbytes) of program code.

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

sudo apt-get -y install pakcs

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

You can also use apt command to install pakcs.

sudo apt -y install pakcs

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

sudo aptitude install pakcs

Summary

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