I am getting this error upon running the following code block in ipython:
%%cython
cdef extern from "cblas.h":
enum CBLAS_ORDER:
CblasRowMajor=101
CblasColMajor=102
enum CBLAS_TRANSPOSE:
CblasNoTrans=111
CblasTrans=112
CblasConjTrans=113
AtlasConj=114
It says "Cannot open include file "cblas.h": No such file or directory" when cblas.h is in the same folder as the ipython notebook. How do I fix this?