我正在尝试在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
答案 0 :(得分:4)
我认为唯一的错误是你实际上中断了安装。
您收到了警告。警告不是错误。就是这样:一个警告。没有警告,生活会更好;但代码可以运行警告。
但你按 CTRL + C ,这会中断安装过程(^C
)。