tx command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tx: command not found
or when using sudo you get the following error message
sudo: tx: command not found
Solutions to tx: command not found
How To Fix tx: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tx is provided by transifex-client package.
transifex-client is:
Transifex Command-line Client is a command line tool that enables you to easily manage your translations within a project without the need of an elaborate UI system.
You can use the command line client to easily create new resources, map locale files to translations and synchronize your Transifex project with your local repository and vice versa. Translators and localization managers can also use it to handle large volumes of translation files easily and without much hassle.
To fix this problem, we can install more using the command below.
sudo apt-get -y install transifex-client
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install transifex-client.
sudo apt -y install transifex-client
Or if you have aptitude installed you can use the following command.
sudo aptitude install transifex-client
Summary
In this tutorial we learn how to fix tx command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.