我正在尝试使用构建一个python模块(scikit.timeseries)
python setup.py build
但是这样的错误:
/Versions/2.6/lib/python2.6/site-packages/numpy/core/include -I/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6 -c'
gcc-4.0: scikits/timeseries/src/cseries.c
sh: gcc-4.0: command not found
这是因为我在OSX Lion上并且gcc-4.0没有退出,gcc确实如此:
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.0
但它是别名的gcc而不是gcc-4.0.如何告诉setup.py查找gcc而不是gcc-4.0?
谢谢 !
最佳答案
尝试
原文链接:https://www.f2er.com/python/438775.htmlexport CC=/usr/bin/gcc
python setup.py build