commands command not found

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

Introduction

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

commands: command not found

or when using sudo you get the following error message

sudo: commands: command not found

Solutions to commands: command not found

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

In Ubuntu commands is provided by golang-github-charmbracelet-bubbletea-dev package.

golang-github-charmbracelet-bubbletea-dev is:

Bubble Tea is the fun, functional and stateful way to build terminal apps. A Go framework based on The Elm Architecture. Bubble Tea is well-suited for simple and complex terminal applications, either inline, full-window, or a mix of both.

Bubble Tea is in use in production and includes a number of features and performance optimizations we’ve added along the way. Among those is a standard framerate-based renderer, a renderer for high-performance scrollable regions which works alongside the main renderer, and mouse support.

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

sudo apt-get -y install golang-github-charmbracelet-bubbletea-dev

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

You can also use apt command to install golang-github-charmbracelet-bubbletea-dev.

sudo apt -y install golang-github-charmbracelet-bubbletea-dev

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

sudo aptitude install golang-github-charmbracelet-bubbletea-dev

Summary

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