@riddhidutta123 The issue is probably with the `openblas` version on your system. MXNet is trying to look for `/usr/local/opt/openblas/lib/libopenblasp-r0.3.1.dylib` on your system and is not able to find it. Please run the following commands in order, and then try `library(mxnet)` on your R console.
``` brew upgrade openblas brew upgrade opencv ln -sf /usr/local/opt/openblas/lib/libopenblasp-r0.3.2.dylib /usr/local/opt/openblas/lib/libopenblasp-r0.3.1.dylib ``` Please let me know if this fixes your problem. @mxnet-label-bot [Pending Requester Info] [ Full content available at: https://github.com/apache/incubator-mxnet/issues/12294 ] This message was relayed via gitbox.apache.org for [email protected]
