jsonschema_suite command not found

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

Introduction

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

jsonschema_suite: command not found

or when using sudo you get the following error message

sudo: jsonschema_suite: command not found

Solutions to jsonschema_suite: command not found

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

In Ubuntu jsonschema_suite is provided by json-schema-test-suite package.

json-schema-test-suite is:

This package contains a set of JSON objects that implementors of JSON Schema validation libraries can use to test their validators.

It is meant to be language agnostic and should require only a JSON parser.

The conversion of the JSON objects into tests within your test framework of choice is still the job of the validator implementor.

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

sudo apt-get -y install json-schema-test-suite

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

You can also use apt command to install json-schema-test-suite.

sudo apt -y install json-schema-test-suite

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

sudo aptitude install json-schema-test-suite

Summary

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