When I create a gevent, I get an error
Traceback (most recent call last):
File "/usr/local/Cellar/python/2.7.1/bin/cython", line 7, in
from Cython.Compiler.Main import main
File "/usr/local/Cellar/python/2.7.1/lib/python2.7/site-packages/Cython-0.14.1-py2.7-macosx-10.4-i386.egg/Cython/Compiler/Main.py ", line 19, in
import code
ImportError: dlopen (/usr/local/Cellar/python/2.7.1/lib/python2.7/site-packages/Cython-0.14.1-py2.7-macosx-10.4-i386.egg/Cython/Compiler/Code .so, 2): no suitable image found. Did find:
/usr/local/Cellar/python/2.7.1/lib/python2.7/site-packages/Cython-0.14.1-py2.7-macosx-10.4-i386.egg/Cython/Compiler/Code.so: mach -o, but wrong architecture
I tried to specify the architecture with CFLAGS = "- arch x86_64", but it does not work.
source
share