Hi, I tried both a program that uses freeglut3 but not python-opengl
(billard-gl) which worked, and another program that uses python-opengl
(snowballz) which failed with the errors:
$ snowballz
Traceback (most recent call last):
File "snowballz.py", line 12, in ?
from player import Player
File "/usr/share/games/snowballz/player.py", line 2, in ?
import ai
File "/usr/share/games/snowballz/ai.py", line 2, in ?
import data
File "/usr/share/games/snowballz/data.py", line 4, in ?
import textures
File "/usr/share/games/snowballz/textures.py", line 2, in ?
from OpenGL.GL import *
File "/usr/lib/python2.4/site-packages/OpenGL/GL/__init__.py", line 2,
in ?
from OpenGL.raw.GL import *
File "/usr/lib/python2.4/site-packages/OpenGL/raw/GL/__init__.py",
line 6, in ?
from OpenGL.raw.GL.constants import *
File "/usr/lib/python2.4/site-packages/OpenGL/raw/GL/constants.py",
line 7, in ?
from OpenGL import platform, arrays
File "/usr/lib/python2.4/site-packages/OpenGL/platform/__init__.py",
line 24, in ?
from OpenGL.platform.glx import *
File "/usr/lib/python2.4/site-packages/OpenGL/platform/glx.py", line
29, in ?
mode=ctypes.RTLD_GLOBAL
File
"/usr/lib/python2.4/site-packages/OpenGL/platform/ctypesloader.py", line
37, in loadLibrary
return dllType( name, mode )
File "/usr/lib/python2.4/site-packages/ctypes/__init__.py", line 340,
in __init__
self._handle = _dlopen(self._name, mode)
OSError: GL: cannot open shared object file: No such file or directory
This points to some problem with python-opengl when using the nv driver.