我尝试按照 uWSGI 文档构建具有asyncio支持的uWSGI 。我正在使用带有 Virtualenv 的OS X 10.10 Yosemite 。
首先,我使用该命令python3-config --include
来获取我的 python3 包含路径。但是当我尝试使用以下命令构建 uWSGI + Asyncio 时:
CFLAGS="-I/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/include/python3.4m" UWSGI_PROFILE="asyncio" pip install uwsgi
我收到以下错误:
plugins/greenlet/greenlet.c:2:10: fatal error: 'greenlet/greenlet.h' file not found
#include <greenlet/greenlet.h>
^
1 error generated.
有没有人遇到过这个问题?我试过你安装在我的 virtualenv 和我的全局 python 安装中首先使用pip安装Greenlet,但我仍然得到'greenlet/greenlet.h' file not found
. 有什么建议吗?