fteqcc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
fteqcc: command not found
or when using sudo you get the following error message
sudo: fteqcc: command not found
Solutions to fteqcc: command not found
How To Fix fteqcc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu fteqcc is provided by fteqcc package.
fteqcc is:
fteqcc compiles QuakeC source code to binary, platform-independent code that Quake based engines can interpret. QuakeC is the language that Quake game logic is developed in and is used for developing modifications.
FTE QCC supports Quake1, QuakeWorld, Hexen2 and FTE Quake, 64bit architectures and multithreading.
To fix this problem, we can install more using the command below.
sudo apt-get -y install fteqcc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install fteqcc.
sudo apt -y install fteqcc
Or if you have aptitude installed you can use the following command.
sudo aptitude install fteqcc
Summary
In this tutorial we learn how to fix fteqcc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.