info command not found

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

Introduction

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

info: command not found

or when using sudo you get the following error message

sudo: info: command not found

Solutions to info: command not found

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

In Ubuntu info is provided by info package.

info is:

The Info file format is an easily-parsable representation for online documents. This program allows you to view Info documents, like the ones stored in /usr/share/info.

Much of the software in Debian comes with its online documentation in the form of Info files, so it is most likely you will want to install it.

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

sudo apt-get -y install info

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

You can also use apt command to install info.

sudo apt -y install info

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

sudo aptitude install info

Summary

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