tl-parser command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tl-parser: command not found
or when using sudo you get the following error message
sudo: tl-parser: command not found
Solutions to tl-parser: command not found
How To Fix tl-parser: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tl-parser is provided by tl-parser package.
tl-parser is:
This tool parses the TL scheme and compile the scheme to tlo file. It is part of the telegram-cli.
TL (Type Language) serves to describe the used system of types, constructors, and existing functions.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tl-parser
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tl-parser.
sudo apt -y install tl-parser
Or if you have aptitude installed you can use the following command.
sudo aptitude install tl-parser
Summary
In this tutorial we learn how to fix tl-parser command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.