Python numpy 模块,get_numpy_include() 实例源码

我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用numpy.get_numpy_include()

项目:pysdif    作者:gesellkammer    | 项目源码 | 文件源码
def numpy_include():
    try:
        inc = np.get_include()
    except AttributeError:
        inc = np.get_numpy_include()
    return inc