本文簡要介紹 python 語言中 numpy.get_include
的用法。
用法:
numpy.get_include()
返回包含 NumPy *.h 頭文件的目錄。
需要針對 NumPy 進行編譯的擴展模塊應使用此函數來定位適當的包含目錄。
注意:
使用
distutils
時,例如在setup.py
中。import numpy as np ... Extension('extension_name', ... include_dirs=[np.get_include()]) ...
相關用法
- Python numpy geterr用法及代碼示例
- Python numpy.geterrcall用法及代碼示例
- Python numpy geterrobj用法及代碼示例
- Python numpy geomspace用法及代碼示例
- Python numpy genfromtxt用法及代碼示例
- Python numpy gradient用法及代碼示例
- Python numpy gcd用法及代碼示例
- Python numpy greater_equal用法及代碼示例
- Python numpy greater用法及代碼示例
- Python numpy RandomState.standard_exponential用法及代碼示例
- Python numpy hamming用法及代碼示例
- Python numpy legendre.legint用法及代碼示例
- Python numpy chararray.ndim用法及代碼示例
- Python numpy chebyshev.chebsub用法及代碼示例
- Python numpy chararray.nbytes用法及代碼示例
- Python numpy ma.indices用法及代碼示例
- Python numpy matrix.A1用法及代碼示例
- Python numpy MaskedArray.var用法及代碼示例
- Python numpy ma.zeros用法及代碼示例
- Python numpy broadcast用法及代碼示例
- Python numpy matrix.T用法及代碼示例
- Python numpy matrix.I用法及代碼示例
- Python numpy MaskedArray.T用法及代碼示例
- Python numpy hermite.hermfromroots用法及代碼示例
- Python numpy hermite_e.hermediv用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.get_include。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。