I'm trying to enable GNU Fortran ver 7.xy on a CentOS 7.9 image in a Singularity container. According to various sources on the internet I need to install the following packages with yum:
yum install centos-release-scl scl-utils-build devtoolset-7-gcc*`
After the installation I try to enable this toolchain with
scl enable devtoolset-7 bash
However, I obtain the error
scl: command not found
I tried to find scl, starting my search from /, but it is not found either:
sudo find / -name "scl"
Also whereis scl returns nothing. Did anyone encounter this error before? What would be the remedy?