tldr-py command not found

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

Introduction

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

tldr-py: command not found

or when using sudo you get the following error message

sudo: tldr-py: command not found

Solutions to tldr-py: command not found

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

In Ubuntu tldr-py is provided by tldr-py package.

tldr-py is:

Yet another Python client for tldr. tldr is a collection of simplified and community-driven man pages. Instead of the long man pages, tldr will give you several simple yet powerful examples.

tldr is just a simple version for the man page, it’s not an alternative. Sometimes, you should read the man pages patiently.

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

sudo apt-get -y install tldr-py

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

You can also use apt command to install tldr-py.

sudo apt -y install tldr-py

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

sudo aptitude install tldr-py

Summary

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