tldr-hs command not found

In this troubleshooting guide we learn how to fix tldr-hs command not found error message

Introduction

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

tldr-hs: command not found

or when using sudo you get the following error message

sudo: tldr-hs: command not found

Solutions to tldr-hs: command not found

How To Fix tldr-hs: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tldr-hs is provided by tldr package.

tldr is:

Haskell tldr client with support for updating and viewing tldr pages.

The TLDR pages are a community effort to simplify the beloved man pages with practical examples. See https://tldr.sh/

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

sudo apt-get -y install tldr

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

You can also use apt command to install tldr.

sudo apt -y install tldr

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

sudo aptitude install tldr

Summary

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