我正在写一个简单的例子来测试Cython:
helloworld.pyx
def foo():
print "hello cython world"
test_cython.py
import pyximport
pyximport.install()
import helloworld
helloworld.foo()
然后返回:
ImportError: Building module testy failed:
["CompileError: command '/BAD_PATH/gcc' failed with exit status 1\n"]
错误与使用gcc的错误路径的Cython有关。
使用“哪个gcc”,我看到我的机器将其保存在:
/CORRECT_PATH/gcc
鉴于我无法移动gcc的位置或编写符号链接,Cython中是否有任何选项强制它使用不同的gcc位置?