tryton command not found

In this troubleshooting guide we learn how to fix tryton command not found error message

Introduction

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

tryton: command not found

or when using sudo you get the following error message

sudo: tryton: command not found

Solutions to tryton: command not found

How To Fix tryton: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tryton is provided by tryton-client package.

tryton-client is:

Tryton is a high-level general purpose application platform. It is the base of a complete business solution as well as a comprehensive health and hospital information system (GNUHealth).

This package contains the client.

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

sudo apt-get -y install tryton-client

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

You can also use apt command to install tryton-client.

sudo apt -y install tryton-client

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

sudo aptitude install tryton-client

Summary

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