-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot install/use on windows 10 #35
Comments
@Rojj I have succeeded in using the Numo::Linalg by not specifying the OpenBLAS library path. Please try that. |
Sorry, maybe it was not clear that I am using Ruby 2.2.4 (Unfortunately I cannot upgrade) That was my first attempt. I also just tried on my work PC (Windows 10 and Ruby Installer 2.2.4). It installs without any error, but when I execute
Is there a minimum Ruby version? |
I tried to load the libraries directly with Ruby Installer 2.6.6 as follows: require 'numo/linalg/linalg'
Numo::Linalg::Blas.dlopen 'C:\msys64\mingw64\lib\libopenblas.dll.a'
Numo::Linalg::Lapack.dlopen 'C:\msys64\mingw64\lib\liblapacke.dll.a' However, I obtained I think that it is difficult to load OpenBLAS on Msys2 with Ruby installed by RubyInstaller. |
Hi,
I am struggling to make numo-linalg (0.1.5) work in windows 10. I am using it successfully on macos. It is amazing BTW :-)
Notes:
libopenblas.a
andliblapacke.a
are both inC:\msys64\mingw64\lib
so I install the gem withgem install numo-linalg -- --with-openblas-dir=C:\msys64\mingw64\lib --with-lapack-lib=C:\msys64\mingw64\lib
The problem is that when I try default, level 1, 2 or 3, for example
I always get
Any idea?
Thanks
The text was updated successfully, but these errors were encountered: