编程语言
首页 > 编程语言> > 如何在Mac OSX上将python.h放入我的python virtualenv中?

如何在Mac OSX上将python.h放入我的python virtualenv中?

作者:互联网

我正在为python应用程序编写C扩展,并且需要测试python特定的C代码.为此,我需要将Python.h导入到我的C文件中,但是对于我来说,我一直无法做到这一点.大多数教程都建议使用类似sudo apt-get python-dev的方法,但是我的系统没有apt-get,即使这样做,我也认为将dev文件放在virtualenv中会更好.

知道如何将Python.h放入我的virtualenv吗?

解决方法:

假设您使用的是通过自制程序安装的MacOSX和Python,

在终端中,您可以使用以下命令找到Python.h:

find /usr/local/Cellar/ -name Python.h

在我的系统上返回:

/usr/local/Cellar//python/2.7.6/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h

标签:python-extensions,c-3,python
来源: https://codeday.me/bug/20191029/1959806.html