我在Ubuntu 12.04上安装了python-dev,libglu-dev和libevent-dev软件包,但是当我尝试从sudo python setup.py install安装kivy时,它会抛出以下错误。
Error compiling Cython file:
-----------------------------------------------------------
. ..
glDeleteFramebuffers(len(self.lr_fbo_fb), arr.data.as_uints)
del self.lr_fbo_fb[:]
if len(self.lr_fbo_rb):
Logger.trace('Context: releasing %d renderbuffer fbos' % len(self.lr_fbo_fb))
arr = self.lr_fbo_rb
glDeleteRenderbuffers(len(self.lr_fbo_rb), arr.data.as_uints)
^
kivy/graphics/context.pyx:303:63: Cannot convert Python object to 'GLuint *'
building 'kivy.graphics.context' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c kivy/graphics/context.c -o build/temp.linux-x86_64-2.7 /kivy/graphics/context.o
kivy/graphics/context.c:1:2: error: #error Do not use this file, it is the result of failed Cython compilation.
如果有人能给我做什么,我会很高兴。我尝试了一切。提前谢谢。
答案 0 :(得分:8)
您可以使用PPA在ubuntu中安装kivy:
sudo add-apt-repository ppa:kivy-team/kivy
sudo apt-get update
sudo apt-get install python-kivy
PPA主页:https://launchpad.net/~kivy-team/+archive/kivy
正如PPA描述部分所说,这就是你失败的原因:
注意:我们可能会在此处上传Cython包,但不保证这些包有效!我们只是将它们托管在那里,因为Cython的构建问题早于0.18.0。