Closed jerlich closed 2 years ago
openblas
shouldn't be an explicit dependency. Any blas
implementation should work. For example, I have no issue with any of the following:
## unspecified
mamba create -yn foo r-igraph
mamba run -n foo R -s -e "library('igraph')"
## accelerate
mamba create -yn foo r-igraph 'blas=*=*accelerate*'
mamba run -n foo R -s -e "library('igraph')"
## blis
mamba create -yn foo r-igraph 'blas=*=*blis*'
mamba run -n foo R -s -e "library('igraph')"
## mkl
mamba create -yn foo r-igraph 'blas=*=*mkl*'
mamba run -n foo R -s -e "library('igraph')"
## netlib
mamba create -yn foo r-igraph 'blas=*=*netlib*'
mamba run -n foo R -s -e "library('igraph')"
## openblas
mamba create -yn foo r-igraph 'blas=*=*openblas*'
mamba run -n foo R -s -e "library('igraph')"
Given the channel configuration shown in conda info
and that the report seems to be for installing into existing environment (rather than creating new environment), this could be a channel mixing issue rather than a package build issue.
Unless there is further supporting evidence (e.g., full conda list
or YAML of broken environment), I'd recommend closing.
I'm closing this as not reproducible. Happy to reopen if there are details for reproduction added.
Issue:
When installed
r-igraph
the openblas dependency doesn't install, so on running, produces this error:I tried to reinstall
r-igraph
:Then I found a stack overflow question about opencv that had the same issue and they recommended directly installing openblas, so I did as follows.
and everything worked afterwards.
Details about
conda
and system (conda info
):