cython magic在同一目录下找不到包含文件

时间:2017-11-20 18:42:50

标签: compilation ipython cython cblas

error pic

我在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

它说“无法打开包含文件”cblas.h“:没有这样的文件或目录” 当cblas.h与ipython笔记本位于同一文件夹中时。我该如何解决这个问题?

0 个答案:

没有答案