-1

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

/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”的树莓派上安装这些依赖项。

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
4

1 回答 1

4

I think the only error is that you actually interrupted the install.

You received a warning. An warning's not an error. It's just that: a warning. Life would be better without warnings; but code can run with warnings.


But then you pressed CTRL+C, which interrupted the install process (^C).

于 2012-12-19T12:33:07.113 回答