Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Problem installing latest version

JFH
New Contributor I
115 Views

I downloaded  intel-fortran-compiler-2026.0.0.573_offline.sh into my Linux system but the instructions do not say what to do next. I tried this:

 

sudo sh ./intel-fortran-compiler-2026.0.0.573_offline.sh -a --silent --cli --eula accept

 

but is that right? and what now?

0 Kudos
2 Replies
JFH
New Contributor I
72 Views

The problem was solved by deleting ```source /opt/intel/oneapi/setvars.sh`` from my .bashrc file (the instructions did not say it might be necessary) and putting it into my ``bin/ifx``` file, which now reads

```

#!/bin/bash
[ ! ${SETVARS_COMPLETED} ] && source /opt/intel/oneapi/setvars.sh
set -x
compiler=/opt/intel/oneapi/compiler/latest/bin/ifx
$compiler -standard-semantics -g "$@"

```

0 Kudos
JFH
New Contributor I
71 Views

Sorry about the typos. I had two backquotes (`) in two places that ought to have been three. I found no way to edit a reply after submitting it, unlike some other forums I use.

0 Kudos
Reply