我已将kivy下载为.tar.gz文件,我已将其解压缩为:
tar -zxvf kivy-1.9.1.tar.gz
当它被解压缩到一个文件夹中时我尝试通过以下方式安装它:
python setup.py install
但是我收到了这个错误:
In file included from kivy/graphics/opengl.c:242:0:
kivy/graphics/gl_redirect.h:43:22: fatal error: GL/gl.h: No such file or directory
compilation terminated.
error: command 'gcc' failed with exit status 1
和其他错误(这里太多了) 我怎么能解决这个问题,如果你知道安装kivy的更好方法,请提及它。
谢谢
注意:我有最新版本的gcc
答案 0 :(得分:0)
根据此User Guide,您可以使用此命令添加其中一个PPA:
$ sudo add-apt-repository ppa:kivy-team/kivy
进行更新:
$ sudo apt-get update
你可以安装kivy:
$ sudo apt-get install python-kivy
或以基于this page的替代方式,您可以先安装依赖项:
$ sudo apt-get install python-setuptools python-pygame python-opengl \
python-gst0.10 python-enchant gstreamer0.10-plugins-good python-dev \
build-essential libgl1-mesa-dev-lts-quantal libgles2-mesa-dev-lts-quantal\
python-pip
比从github获取源代码。并通过$ python setup.py build_ext --inplace -f
进行编译,或者只需输入make