go-infocmp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
go-infocmp: command not found
or when using sudo you get the following error message
sudo: go-infocmp: command not found
Solutions to go-infocmp: command not found
How To Fix go-infocmp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu go-infocmp is provided by terminfo package.
terminfo is:
terminfo provides a pure-Go implementation of reading information from the terminfo database. This provides the infocmp binary from terminfo.
To fix this problem, we can install more using the command below.
sudo apt-get -y install terminfo
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install terminfo.
sudo apt -y install terminfo
Or if you have aptitude installed you can use the following command.
sudo aptitude install terminfo
Summary
In this tutorial we learn how to fix go-infocmp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.