Closed SoptikHa2 closed 8 months ago
We get different error when we add
install_requires = [ "scipy", "numpy", "findblas" ],
to setup in setup.py
, however, the linker fails afterwards regardless, so not sure whether the fix is sound.
That fix is not sound and what what distribution of python (e.g., conda, mac default, homebrew)?
One fix if not using conda is to pip install mkl-devel
before installing the pacakge
Also one more question, please let me know what pip install .
gives instead of using setup.py
also after further this seems to be a bug with findblas and I will file a report there. One suggestion is to use conda in the menatime.
I was using homebrew and the same error happened even when using pip install .
Anyway thanks for your help! We worked around this.
Hi,
I tried to install your library on Mac, both arm and x86 via rosetta, however, it failed during installation. (I have installed openblas, but it didn't change anything).
From the error, it looks like findblas cannot find numpy nor scipy, however, both are installed in the venv when I do
pip freeze
(see below the error message).When I run find blas myself in python interpreter in the same venv where I try to install fdasrsf, it works, this one provides me with the blas path:
Error during installation:
Pip freeze:
Any idea what to do with this?