首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

OS Mountain Lion 10.8.2 装配 Cython

2013-01-01 
OS Mountain Lion 10.8.2 安装 Cython使用Python开发的程序,运行速度上不太满意,碰巧看到赖勇浩CSDN博客中

OS Mountain Lion 10.8.2 安装 Cython

使用Python开发的程序,运行速度上不太满意,碰巧看到赖勇浩CSDN博客中翻译的Cython三分钟入门。得空便开始着手尝试,半天未果。

问题一大堆,比如:

    OS下设置环境变量;Clang(/kl??/)安装;

OS下终端里设置临时环境变量的方法比较容易:

?

export PATH=$PATH:'app/bin'

?

OS设置永久环境变量,网上搜了一篇,没太搞明白,但起作用了:Mac下设置环境变量

?

?

编译Clang需要GCC,GCC我在XCode安装目录下找到了:

/Applications/Xcode.app/Contents/Developer/usr/bin

?

按照《结构化编译器前端Clang介绍》折腾半天,最终也没能编译成功。

?

回头再去XCode安装目录:

?

Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

?

找到了,果断复制了Clang至:

?

/Applications/Xcode.app/Contents/Developer/usr/bin

?

也不知道,合不合适,但终端里输入Clang终于有反应了

?

cd?Cython-0.17.3

python setup.py build

?

阻力继续:

?

running build_pyrunning build_extbuilding 'Cython.Plex.Scanners' extensionclang -fno-strict-aliasing -fno-common -dynamic -g -Os -pipe -fno-common -fno-strict-aliasing -fwrapv -mno-fused-madd -DENABLE_DTRACE -DMACOSX -DNDEBUG -Wall -Wstrict-prototypes -Wshorten-64-to-32 -DNDEBUG -g -Os -Wall -Wstrict-prototypes -DENABLE_DTRACE -arch i386 -arch x86_64 -pipe -I/System/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c Cython/Plex/Scanners.c -o build/temp.macosx-10.8-intel-2.7/Cython/Plex/Scanners.oclang: warning: argument unused during compilation: '-mno-fused-madd'Cython/Plex/Scanners.c:4:10: fatal error: 'Python.h' file not found#include "Python.h"         ^1 error generated.error: command 'clang' failed with exit status 1
?

stackoverflow上有个最佳答案:

?

?

"Before installing, note that from within Terminal you can use the XCRUN tool to launch compilers and other tools embedded within the Xcode application. Use the XCODE-SELECT tool to define which version of Xcode is active.? Type "man xcrun" from within Terminal to find out more.

?

Downloading this package will install copies of the core command line tools and system headers into system folders, including the LLVM compiler, linker, and build tools."

?

再次打开终端:输入gcc,输入clang,就这么简单,绕这么大弯。

?

python setup.py build 有些警告

?

sudo python setup.py install?

?

结束!

热点排行