标签: python numpy header-files
等同于
numpy.get_include()
用于Python的here,给我一条Python头文件所在目录的路径?
答案 0 :(得分:13)
头文件位于include目录中。
您可以使用distutils.sysconfig模块找到include dir
from distutils.sysconfig import get_python_inc get_python_inc() #this gives the include dir
您可以阅读here