tryton-server command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tryton-server: command not found
or when using sudo you get the following error message
sudo: tryton-server: command not found
Solutions to tryton-server: command not found
How To Fix tryton-server: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tryton-server is provided by tryton-server package.
tryton-server 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). It is written in Python and uses PostgreSQL as its preferred database engine.
This package contains the server.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tryton-server
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tryton-server.
sudo apt -y install tryton-server
Or if you have aptitude installed you can use the following command.
sudo aptitude install tryton-server
Summary
In this tutorial we learn how to fix tryton-server command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.