Kivy installation does not find GL / gl.h?

I just wanted to install kivy to test it and make some applications,
I installed cython and other things,
then I entered into the terminal (ubuntu 12.04):

sudo easy_install kivy

as an answer, I got this:

Searching for kivy
Reading http://pypi.python.org/simple/kivy/
Best match: Kivy 1.2.0
Downloading http://pypi.python.org/packages/source/K/Kivy/Kivy-1.2.0.tar.gz#md5=468da8a353c2ea4936eb92d71403c960
Processing Kivy-1.2.0.tar.gz
Running Kivy-1.2.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-rcrkeK/Kivy-1.2.0/egg-dist-tmp-xdOqxi
[INFO   ] Kivy v1.2.0
WARNING: GLES 2.0 headers are not found
Fallback to Desktop opengl headers.
Build configuration is:
 * use_opengl_es2  =  False
 * use_glew  =  False
 * use_opengl_debug  =  False
 * use_mesagl  =  False
Generate config.h
Generate config.pxi
In file included from /tmp/easy_install-rcrkeK/Kivy-1.2.0/kivy/graphics/texture.c:273:0:
/tmp/easy_install-rcrkeK/Kivy-1.2.0/kivy/graphics/gl_redirect.h:38:22: fatal error: GL/gl.h: El fitxer o directori no existeix
compilation terminated.
 error: Setup script exited with error: command 'gcc' failed with exit status 1

did something wrong? or do i need to install something?

PS sorry for the Catalan El fitxer o directori no existeix means that the file was not found.

+5
source share
2 answers

Install the libgl1-mesa-dev package through apt. You might want to look at the creation instructions in the launchpad: http://bazaar.launchpad.net/~kivy-team/kivy/packaging/view/head:/debian/control

+5
source

, , mesa-common-dev, : Debian.
Nvidia, nvidia-glx-dev.
glut.h, freeglut3-dev. , . Debian, .

+1

All Articles