Skip to content

Instantly share code, notes, and snippets.

@codewarrior0
Created November 16, 2012 23:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codewarrior0/4092027 to your computer and use it in GitHub Desktop.
Save codewarrior0/4092027 to your computer and use it in GitHub Desktop.
In [1]: import logging
In [2]: logging.basicConfig(level=logging.INFO)
In [3]: import OpenGL
In [4]: from OpenGL import GL
INFO:OpenGL.acceleratesupport:OpenGL_accelerate module loaded
INFO:OpenGL.arrays.arraydatatype:Using accelerated ArrayDatatype
INFO:OpenGL.formathandler:Unable to load registered array format handler numeric:
Traceback (most recent call last):
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\arrays\formathandler.py", line 35, in loadPlugi
n
plugin_class = entrypoint.load()
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\plugins.py", line 14, in load
return importByName( self.import_path )
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\plugins.py", line 28, in importByName
module = __import__( ".".join(moduleName), {}, {}, moduleName)
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\arrays\numeric.py", line 15, in <module>
raise ImportError( """No Numeric module present: %s"""%(err))
ImportError: No Numeric module present: No module named Numeric
INFO:OpenGL.formathandler:Unable to load registered array format handler vbo:
Traceback (most recent call last):
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\arrays\formathandler.py", line 35, in loadPlugin
plugin_class = entrypoint.load()
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\plugins.py", line 14, in load
return importByName( self.import_path )
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\plugins.py", line 28, in importByName
module = __import__( ".".join(moduleName), {}, {}, moduleName)
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\arrays\vbo.py", line 33, in <module>
from OpenGL import GL
ImportError: cannot import name GL
INFO:OpenGL.formathandler:Unable to load registered array format handler vbooffset:
Traceback (most recent call last):
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\arrays\formathandler.py", line 35, in loadPlugin
plugin_class = entrypoint.load()
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\plugins.py", line 14, in load
return importByName( self.import_path )
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\plugins.py", line 28, in importByName
module = __import__( ".".join(moduleName), {}, {}, moduleName)
File "c:\Python27-64\lib\site-packages\pyopengl-3.0.2-py2.7.egg\OpenGL\arrays\vbo.py", line 33, in <module>
from OpenGL import GL
ImportError: cannot import name GL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment