pegjs command not found

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

Introduction

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

pegjs: command not found

or when using sudo you get the following error message

sudo: pegjs: command not found

Solutions to pegjs: command not found

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

In Ubuntu pegjs is provided by node-pegjs package.

node-pegjs is:

PEG.js is a simple parser generator for JavaScript that produces fast parsers with excellent error reporting. You can use it to process complex data or computer languages and build transformers, interpreters, compilers and other tools easily.

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

sudo apt-get -y install node-pegjs

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

You can also use apt command to install node-pegjs.

sudo apt -y install node-pegjs

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

sudo aptitude install node-pegjs

Summary

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