从python中找到python头路径?

时间:2013-01-17 08:52:15

标签: python numpy header-files

等同于

numpy.get_include()

用于Python的here,给我一条Python头文件所在目录的路径?

1 个答案:

答案 0 :(得分:13)

头文件位于include目录中。

您可以使用distutils.sysconfig模块找到include dir

from distutils.sysconfig import get_python_inc
get_python_inc() #this gives the include dir

您可以阅读here