I have built SciPy wheel with openblas from OpenMathLib(OpenMathLib · GitHub) using pkg-config method on windows without scipy-openblas32. How to link the built openblas.dll dynamically with wheel to get the functionality of BLAS/LAPACK packages?
Thanks
The short answer is that Windows doesn’t have RPATH support, so for any DLLs that aren’t in a directory that’s searched for DLLs by default, you should use os.add_dll_directory to add that directory to the search path. You can edit scipy/_distributor_init.py to do so.
You don’t build wheels from a build or build-install dir. Rather, starting from a clean repository, you build a wheel with python -m build --wheel for local usage.
@rgommers
I tried the following command you shared, but it tries to download numpy source code and building numpy on top of it, is there any reason why numpy comes into play here? Since i am having my own numpy installed via pypi