2013-01-17 55 views
5

什麼是用於here爲Python,讓我在Python的頭文件所在的目錄路徑的從python中查找python頭文件路徑?

numpy.get_include() 

等價?

+0

你爲什麼不只是安裝numpy的的include目錄? –

+1

@Rachel Gallen這不是一個安裝問題。我只是用numpy作爲我之後的一個例子... – Woltan

回答

13

頭文件位於包含目錄中。

您可以使用distutils.sysconfig模塊

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

你可以閱讀一下here