jove command not found

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

Introduction

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

jove: command not found

or when using sudo you get the following error message

sudo: jove: command not found

Solutions to jove: command not found

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

In Ubuntu jove is provided by jove package.

jove is:

Jove is a compact, powerful Emacs-style text-editor. It provides the common emacs keyboard bindings, together with a reasonable assortment of the most popular advanced features (e.g. interactive shell windows, compile-it, language specific modes) while weighing in with CPU, memory, and disk requirements comparable to vi(1).

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

sudo apt-get -y install jove

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

You can also use apt command to install jove.

sudo apt -y install jove

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

sudo aptitude install jove

Summary

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