# Intel oneAPI ## what is API? API stands for "Application Programming Interface" ## How to install - go to https://software.intel.com/content/www/us/en/develop/tools/oneapi/base-toolkit/download.html - chose linux--> web & local --> Local - copy the Wget command to linux # how to install by yum [yum 網站](https://software.intel.com/content/www/us/en/develop/articles/installing-intel-oneapi-toolkits-via-yum.html) tee > /tmp/oneAPI.repo << EOF [oneAPI] ``` name=Intel(R) oneAPI repository baseurl=https://yum.repos.intel.com/oneapi enabled=1 gpgcheck=1 repo_gpgcheck=1 gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB EOF ``` sudo mv /tmp/oneAPI.repo /etc/yum.repos.d ```