- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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 "$@"
```
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page