cypher-lint command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cypher-lint: command not found
or when using sudo you get the following error message
sudo: cypher-lint: command not found
Solutions to cypher-lint: command not found
How To Fix cypher-lint: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cypher-lint is provided by cypher-lint package.
cypher-lint is:
Cypher is a graph query language that allows for expressive and efficient querying of graph data.
This tool provides correctness checking of Cypher language input, and can be used to output the Abstract Syntax Tree (AST) of the parsed input.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cypher-lint
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cypher-lint.
sudo apt -y install cypher-lint
Or if you have aptitude installed you can use the following command.
sudo aptitude install cypher-lint
Summary
In this tutorial we learn how to fix cypher-lint command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.