Intel® Parallel Studio XE Runtime includes everything you need to run applications built with Intel® Parallel Studio XE. The packages are available, through an APT package manager, free of charge, to users who already have applications enabled with Intel® Parallel Studio XE.
Setting up the Repository
Install the GPG key for the repository
Download the public key from https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB and save it to a file. Then add this key to the system keyring:
sudo apt-key add <PATH_TO_DOWNLOADED_GPG_KEY>
Add APT Repository
cd /etc/apt/sources.list.d
sudo vi intel-psxe-runtime-2020.list
Append the following code
deb https://apt.repos.intel.com/2020 intel-psxe-runtime main
Update
sudo apt-get update
Intel® Parallel Studio XE Runtime versions available in the repository
<VERSION
|
<UPDATE>
|
<BUILD_NUM>
|
2020 | 4 | 16 |
2020 | 2 | 14 |
2020 | 1 | 12 |
2020 | 0 | 8 |
For additional versions see: Intel® Parallel Studio XE Runtime by Version
Installing the runtime packages using the APT Package Manager
The following variables are used in the installation commands:
<VERSION>: 2017, 2018, 2019, 2020, ...
<UPDATE>: 0, 1, 2, ...
<COMPONENT>: a component name from the list of available components below
Component | <COMPONENT> |
Intel® Parallel Studio XE | intel-psxe-runtime |
Intel® C++ Compiler |
intel-icc-runtime |
Intel® Fortran Compiler | intel-ifort-runtime |
Intel® Integrated Performance Primitives | intel-ipp-runtime |
Intel® Math Kernel Library | intel-mkl-runtime |
Intel® Data Analytics Acceleration Library | intel-daal-runtime |
Intel® Threading Building Blocks | intel-tbb-runtime |
Intel® MPI Library | intel-mpi-runtime |
How do I install the latest version?
- Installation of full runtime package
sudo apt-get install intel-psxe-runtime
- Installation of particular component from a full runtime package
sudo apt-get install <COMPONENT>
Example:
sudo apt-get install intel-ipp-runtime
How do I install a particular version?
- To install a particular version of a full runtime package
sudo aptitude install -y -o Aptitude::ProblemResolver::SolutionCost='100*canceled-actions,200*removals' intel-psxe-runtime=<VERSION>.<UPDATE>-<BUILD_NUM>
Example:
sudo aptitude install -y -o Aptitude::ProblemResolver::SolutionCost='100*canceled-actions,200*removals' intel-psxe-runtime=2020.2-14
- To install a particular version of a particular component
- Get the list of all available component versions
apt-cache madison <COMPONENT>
Example:
apt-cache madison intel-ipp-runtime
- Use the desired component version in the command
sudo aptitude install -y -o Aptitude::ProblemResolver::SolutionCost='100*canceled-actions,200*removals' <COMPONENT>=<VERSION>.<UPDATE>-<BUILD_NUM>
Example:
sudo aptitude install -y -o Aptitude::ProblemResolver::SolutionCost='100*canceled-actions,200*removals' intel-ipp-runtime=2020.2-14
How do I upgrade the installed packages?
- Upgrade a full runtime package to the latest version
sudo apt-get install intel-psxe-runtime
- Upgrade a particular component to the latest version
sudo apt-get install <COMPONENT>
Example:
sudo apt-get install intel-ipp-runtime
How do I uninstall a particular version?
- Uninstall a full runtime package
sudo apt-get purge --auto-remove intel-psxe-runtime
- Uninstall a particular component
sudo apt-get purge --auto-remove <COMPONENT>
Example:
sudo apt-get purge --auto-remove intel-ipp-runtime
How do I install a 32-bit runtime rpm on a 64-bit system?
- Install a 32-bit package of a full runtime
- Add i386 architecture
sudo dpkg --add-architecture i386
- Update available packages list
sudo apt-get update
- Install the 32-bit runtime package
sudo apt-get install intel-psxe-runtime:i386
- Add i386 architecture
- Install 32-bit version of particular component:
sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install <COMPONENT>:i386
Example:
sudo apt-get install intel-ipp-runtime:i386
By downloading Intel® Parallel Studio XE Runtime you agree to the terms and conditions stated in the End-User License Agreement (EULA).
Intel® Parallel Studio XE Runtime location on a local system
/opt/intel/psxe_runtime_<VERSION>.<UPDATE>.<BUILD_NUM>
Links to the last installed runtime package:
/opt/intel/psxe_runtime_<VERSION>
/opt/intel/psxe_runtime
Have Questions?
Check out the FAQ
See our Get Help page for your support options.