hjson-cli command not found

In this troubleshooting guide we learn how to fix hjson-cli command not found error message

Introduction

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

hjson-cli: command not found

or when using sudo you get the following error message

sudo: hjson-cli: command not found

Solutions to hjson-cli: command not found

How To Fix hjson-cli: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu hjson-cli is provided by hjson-go package.

hjson-go is:

HJSON is a derivative of JSON designed to be more easily editable by humans. This package provides the CLI tool for manipulating HJSON.

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

sudo apt-get -y install hjson-go

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

You can also use apt command to install hjson-go.

sudo apt -y install hjson-go

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

sudo aptitude install hjson-go

Summary

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