-
Notifications
You must be signed in to change notification settings - Fork 125
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
Painful installation on MacOS #625
Comments
This should be solved if #609 is merged and released. A slightly more straightforward option is to use macports, with that it just works on intel, no env variable needed. |
The solution from OP did not work for me I'm on M1 mac so the homebrew paths are different so I changed these to the paths that exist:
but I still get the same error
|
if I delete the symlinks from above and try the instruction from the PR mentioned:
then this works. |
fwiw, on my Intel mac with homebrew the above solution does not work. maybe expected since it seems to be targeted at M1 macs. i also tried a modified version with |
This issue should have been solved by now. |
I tried to install owl on MacOS Monterey (x86-64) after running
brew install openblas
.Ideally,
opam install owl
should just work. However, I had to do:The first block seems to be necessary since homebrew's openblas installation is kegonly (since MacOS ships with its own version of openblas). Removing it results in the following error:
Removing the second block results in the following error:
The problem seems to be that some recent clang versions do not ship with
libquadmath.0.dylib
andlibgcc_s.1.1.dylib
so I ended up adding them manually (as suggested here).It is my understanding that the whole purpose of the
conf-openblas
package on which owl depends is to avoid these difficulties. Did anyone else encounter the same problems?The text was updated successfully, but these errors were encountered: