- Official Guide
- VMagnin's post
- NOTE: Make sure to do
sudo apt updateafter 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.gpgsudo 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 updatesudo 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
timed that step (i.e.curlpiped togpg). Here are my results:@Azadparvar
Most probably, your
curlfailed. I suggest you use the option-fwithcurl.@Lars255
The installation described in this gist does automatically install the replacement for
ifort, viz.ifx. So, simply useifxcommand instead ofifortafter the installation.