tla-gpg-check command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tla-gpg-check: command not found
or when using sudo you get the following error message
sudo: tla-gpg-check: command not found
Solutions to tla-gpg-check: command not found
How To Fix tla-gpg-check: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tla-gpg-check is provided by tla package.
tla is:
Arch is a modern replacement for CVS, specifically designed for the distributed development. It supports development on branches, distributed repositories, changeset-oriented project management, and of course, file and directory renaming.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tla
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tla.
sudo apt -y install tla
Or if you have aptitude installed you can use the following command.
sudo aptitude install tla
Summary
In this tutorial we learn how to fix tla-gpg-check command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.