Closed FrancescAlted closed 2 years ago
After several attempts, it looks like conda is responsible for that, as I have found that mamba does not find the dependency issue. So, a workaround is to install things with mamba. First, to install mamba use:
$ conda install mamba -n base -c conda-forge
Then one can use:
$ mamba install 'llvmdev>=13'
$ mamba install -c intel mkl-include
$ mamba install -c intel mkl-static
$ mamba install -c intel icc_rt # SVML
Also, it is worth noting that one should always use the regular conda channels, and not conda-forge, to install dependencies, specially llvmdev. I have tried with conda-forge a couple of times, but tests using LLVM crash (at least on MacOSX, even forcing mamba install llvmdev<15
).
Added a note in README.md (199896f7). Closing, although maybe in the future we should propagate this to CI scripts.
With fresh installs of conda (on MacOSX at least), the next installation process:
is raising the next error:
It looks like Intel (or Anaconda) messed things up. Still trying to find a workaround.