If you look at the installer message, did you see where it provides the link where to go get the Intel Compute Runtime modules at GitHub ?
At Github, Intel provides the instructions for installing in sequence to meet the dependency chain.
From the installer script directly;
# Intel Compute Runtime needed? Print instructions if needed
if [ $NeedIntelCompute -gt 0 ] && [ $HaveIntelCompute -eq 0 ]; then
if [ $HaveIntelGmmlib -eq 0 ]; then
Warnings=$((Warnings + 1))
Output ""
Output "WARNING: The Intel GMM library, required for Intel Compute Runtime support, is missing."
Output " Please install package: 'intel-gmmlib' from https://github.com/intel/compute-runtime/releases"
fi
if [ $HaveIntelIGCCore -eq 0 ]; then
Warnings=$((Warnings + 1))
Output ""
Output "WARNING: The Intel IGC Core, required for Intel Compute Runtime support, is missing."
Output " Please install package: 'intel-igc-core' from https://github.com/intel/compute-runtime/releases"
fi
if [ $HaveIntelIGCOpenCL -eq 0 ]; then
Warnings=$((Warnings + 1))
Output ""
Output "WARNING: The Intel IGC OpenCL library, required for Intel Compute Runtime support, is missing."
Output " Please install package: 'intel-igc-opencl' from https://github.com/intel/compute-runtime/releases"
fi
if [ $HaveIntelOpenCL -eq 0 ]; then
Warnings=$((Warnings + 1))
Output ""
Output "WARNING: The Intel OpenCL library, required for Intel Compute Runtime support, is missing."
Output " Please install package: 'intel-opencl' from https://github.com/intel/compute-runtime/releases"
fi
if [ $HaveIntelOCLoc -eq 0 ]; then
Warnings=$((Warnings + 1))
Output ""
Output "WARNING: The Intel Ocloc library, required for Intel Compute Runtime support, is missing."
Output " Please install package: 'intel-ocloc' from https://github.com/intel/compute-runtime/releases"
fi
if [ $HaveIntelZeroGPU -eq 0 ]; then
Warnings=$((Warnings + 1))
Output ""
Output "WARNING: The Intel Level Zero GPU library, required for Intel Compute Runtime support, is missing."
Output " Please install package: 'intel-level-zero-gpu'"
fi
Output "Intel Compute Runtime packages are available from: https://github.com/intel/compute-runtime/releases"
Output "Please be certain to install them in the listed order."
fi
fi
> You can use apt to install intel-opencl-icd or remove intel-opencl and intel-ocloc if they are installed from previous releases. intel-opencl-icd is new package containing Neo and ocloc.
Yeah, you will probably need to update the debian packages.
With the latest version, it won’t even be installed (and will automatically be removed when installed), never mind the version. This issue came about because @Morphy is trying to do a force-install which is causing the conflict.
ii intel-gmmlib 21.2.1 amd64 Intel(R) Graphics Memory Management Library Package
ii intel-igc-core 1.0.8744 amd64 Intel(R) Graphics Compiler for OpenCL(TM)
ii intel-igc-opencl 1.0.8744 amd64 Intel(R) Graphics Compiler for OpenCL(TM)
ii intel-level-zero-gpu 1.2.021270 amd64 Intel(R) Graphics Compute Runtime for oneAPI Level Zero.
ii intel-media-va-driver:amd64 20.1.1+dfsg1-1 amd64 VAAPI driver for the Intel GEN8+ Graphics family
ii intel-microcode 3.20210608.0ubuntu0.20.04.1 amd64 Processor microcode firmware for Intel CPUs
ii intel-opencl-icd 20.13.16352-1 amd64 Intel graphics compute runtime for OpenCL
ii libdrm-intel1:amd64 2.4.105-3~20.04.2 amd64 Userspace interface to intel-specific kernel DRM services -- runtime