使用了Numpy的Cython程序编译错误解决方案
Posted on 13 Nov 2014 PythonCythonNumpyCompile 添加评论
这是个老问题了,典型的错误提示信息是 fatal error: numpy/arrayobject.h: No such file or directory...compilation terminated error
。 为了避免每次都去翻笔记共享到这里,也方便遇到同样问题的同学解决。原帖在这里
解决方案中Robert Kern提到:
解决方法就是往include_dirs
添加numpy.get_include()
。