fcc command not found

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

Introduction

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

fcc: command not found

or when using sudo you get the following error message

sudo: fcc: command not found

Solutions to fcc: command not found

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

In Ubuntu fcc is provided by fcc package.

fcc is:

LoopTools is a package for evaluation of scalar and tensor one-loop integrals based on the FF package by G.J. van Oldenborgh. It features an easy Fortran, C++, and Mathematica interface to the scalar one-loop functions of FF and in addition provides the 2-, 3-, and 4-point tensor coefficient functions.

This package provides a script, fcc, to compile C and C++ programs and link them with Fortran libraries.

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

sudo apt-get -y install fcc

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

You can also use apt command to install fcc.

sudo apt -y install fcc

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

sudo aptitude install fcc

Summary

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