- Official Guide
- VMagnin's post
- NOTE: Make sure to do
sudo apt update
after adding intel's repositories to apt. - VMagnin's post regarding sourcing
/opt/intel/oneapi/setvars.sh
- Another useful source
My route:
curl -Lo- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | sudo gpg --dearmor -o /usr/share/keyrings/oneapi-archive-keyring.gpg
sudo tee /etc/apt/sources.list.d/oneAPI.list <<< "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main"
sudo apt update
sudo apt install intel-oneapi-compiler-fortran
- Optional:
sudo apt install intel-oneapi-mkl
- In
~/.bashrc
:source /opt/intel/oneapi/setvars.sh > /dev/null
Thanks for your comments and sincere apologies for the delayed response.
@Raghavenp
Nope. I
time
d that step (i.e.curl
piped togpg
). Here are my results:@Azadparvar
Most probably, your
curl
failed. I suggest you use the option-f
withcurl
.@Lars255
The installation described in this gist does automatically install the replacement for
ifort
, viz.ifx
. So, simply useifx
command instead ofifort
after the installation.