Greetings - I'm trying to install intel parallel studio XE version 19.0.5 onto an ubuntu 18.04 OS.
The full installation works fine. My problem comes in when I try to install components. I am doing this inside a docker container so I would like to limit the size of the container by omitting what I do not need. Since I'm doing this in a container, I'm doing a silent install:
./install.sh --silent=silent.cfg
The silent.cfg file includes this line:
# List of components to install (use semicolon to separate the components), valid values are: {ALL, DEFAULTS, comppat} COMPONENTS=intel-icc__x86_64;intel-ifort__x86_64;intel-mkl-core__x86_64
But when I run the install script, this is what comes out in /opt/intel:
root@434e914a1a04:/opt/intel# ls advisor compilers_and_libraries documentation_2019 inspector_2019 itac mkl performance_snapshots_2019.6.0.602217 vtune_amplifier_2019.6.0.602217 advisor_2019 compilers_and_libraries_2019 ide_support_2019 inspector_2019.5.0.602103 itac_2019 mpirt pstl advisor_2019.5.0.602216 compilers_and_libraries_2019.5.281 imb intel_sdp_products.db itac_latest parallel_studio_xe_2019 samples_2019 bin conda_channel impi intelpython2 lib parallel_studio_xe_2019.5.075 tbb clck daal include intelpython3 licenses performance_snapshot vtune_amplifier clck_latest debugger_2019 inspector ipp man performance_snapshots vtune_amplifier_2019
Regardless of what I put in the COMPONENT list, it is installing everything: advisor, vtune, inspector, dall tbb, 32-bit libraries, etc. This is bloating the size of my Docker container to over 22 GB.
Any ideas why the install script is not processing the COMPONENT list?
Thanks for any insights you might have