[PyOpenGL-Users] "No module named _GL__init__"
Brought to you by:
mcfletch
|
From: Dan C. <dc...@co...> - 2004-06-15 02:07:36
|
I am trying to install PyOpenGL on Fedora Core 2. After several
iterations to meet dependencies, I was finally able to build. However,
when I run, I get an error "No module named _GL__init__". The full
traceback is shown below.
Any suggestions would be greatly appreciated.
-----
$python main.py Traceback (most recent call last):
File "main.py", line 48, in ?
run()
File "main.py", line 42, in run
core.init(width, height)
File "/usr/local/lib/python2.3/site-packages/pyui/core.py", line 65,
in init
from renderers.openglPygame import OpenGLPygame
File
"/usr/local/lib/python2.3/site-packages/pyui/renderers/openglPygame.py",
line 25, in ?
from pyui.renderers import openglBase
File
"/usr/local/lib/python2.3/site-packages/pyui/renderers/openglBase.py",
line 45, in ?
from OpenGL.GL import *
File "/usr/local/lib/python2.3/site-packages/OpenGL/__init__.py",
line 26, in ?
from GL.GL__init___ import __numeric_present__, __numeric_support__
File "/usr/local/lib/python2.3/site-packages/OpenGL/GL/__init__.py",
line 2, in ?
from GL__init__ import *
File
"/usr/local/lib/python2.3/site-packages/OpenGL/GL/GL__init__.py", line
4, in ?
import _GL__init__
ImportError: No module named _GL__init__
|