安装Cython

时间:2012-12-19 12:29:53

标签: python cython raspbian

我正在尝试在Debian“Squeezed”上安装cython并且它给出了这个错误:

/tmp/easy_install-QDDnM0/Cython-0.17.3/Cython/Plex/Scanners.c:7090:18: warning: â__Pyx_CyFunction_Newâ defined but not used [-Wunused-function]
^Cerror: Setup script exited with interrupted

我试图在运行“Raspbian”的Raspberry Pi上安装这些依赖项。

sudo apt-get install python2.7 python2.7-dev python-setuptools python-twisted mercurial gcc g++ zope.interface 
sudo python -m easy_install cython 
sudo python -m easy_install pil 
sudo python -m easy_install jinja2

1 个答案:

答案 0 :(得分:4)

我认为唯一的错误是你实际上中断了安装。

您收到了警告。警告不是错误。就是这样:一个警告。没有警告,生活会更好;但代码可以运行警告。


CTRL + C ,这会中断安装过程(^C)。