0

error pic

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?

Micho
  • 3,929
  • 13
  • 37
  • 40
ffffffyyyy
  • 117
  • 2
  • 7
  • 2
    Possible duplicate of [cython failed with exit status 2 when trying to access library](https://stackoverflow.com/questions/47390860/cython-failed-with-exit-status-2-when-trying-to-access-library) – DavidW Nov 20 '17 at 19:15
  • Please don't repeatedly ask the same question. You can edit your existing question to clarify (as you have done) – DavidW Nov 20 '17 at 19:17

0 Answers0