tachyon-nox command not found

In this troubleshooting guide we learn how to fix tachyon-nox command not found error message

Introduction

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

tachyon-nox: command not found

or when using sudo you get the following error message

sudo: tachyon-nox: command not found

Solutions to tachyon-nox: command not found

How To Fix tachyon-nox: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tachyon-nox is provided by tachyon-bin-nox package.

tachyon-bin-nox is:

Tachyon is a portable, high performance parallel ray tracing system supporting MPI and multithreaded implementations. Tachyon is built as a C callable library, which can be used within applications.

Tachyon implements all of the basic geometric primitives such as triangles, planes, spheres, cylinders, etc. Some of the goals in developing Tachyon were to make it fast and for it to parallelize well. These are what set it apart from more full-featured programs like POV-Ray, Rayshade, and others. Tachyon supports enough features to be an excellent alternative to slower programs for demanding animation and scientific visualization tasks.

This package provides a simple scene file parser front-end built upon tachyon but without X support.

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

sudo apt-get -y install tachyon-bin-nox

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

You can also use apt command to install tachyon-bin-nox.

sudo apt -y install tachyon-bin-nox

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

sudo aptitude install tachyon-bin-nox

Summary

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