I installed the mxnet following the instructions.However,at the end of the process,just before make -j4,it occurred an error that

I searched everywhere in the github,but could not find "cblas.h"!!!!!!!!!!!!Who can help me !SOS!!!!!!!
A billion thanks to the helper~
you need to install openblas

love your reply~but has already installed at first
LOVE YOUR REPLY~MUA~BUT,openblas is included in install homebrew/science~It is said that openblas HAS ALREADY INSTALLED!OH~still cannot find cblas.h....is there anything with the path?I am installing it for the whole day.....OH MY GOd!Can I speak Chinese?
----- 原始邮件 -----
发件人:Eric Junyuan Xie [email protected]
收件人:dmlc/mxnet [email protected]
抄送人:balla2011 [email protected]
主题:Re: [dmlc/mxnet] mxnet in mac os (#1895)
日期:2016年04月19日 15点46分
you need to install openblas
—
You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub
It seems that you have not add your blas include path into the config.mk.
like this:
the additional link flags you want to add
ADD_LDFLAGS = -L/opt/OpenBLAS/lib
the additional compile flags you want to add
ADD_CFLAGS = -I/opt/OpenBLAS/include
ADD_LDFLAGS = '-L/usr/local/opt/openblas/lib'
and
ADD_CFLAGS = '-I/usr/local/opt/openblas/include'
in the config.mk file should work for you.
This issue is closed due to lack of activity in the last 90 days. Feel free to reopen if this is still an active issue. Thanks!
Most helpful comment
ADD_LDFLAGS = '-L/usr/local/opt/openblas/lib'and
ADD_CFLAGS = '-I/usr/local/opt/openblas/include'in the
config.mkfile should work for you.