-1

I keep getting an Unable to load numpy_formathandler accelerator from OpenGL_accelerate message when using OpenGL. From what I can tell, everything seems to be running fine, but message always pops up.

Here is a sample script where it happens. It also happens with these two lines:

from glumpy import app, gloo, gl
window = app.Window()

Here is the output:

enter image description here

I am unsure if it is an issue but it is just annoying. I am running it with Big Sur using python 3.8.

genpfault
  • 51,148
  • 11
  • 85
  • 139
amv_23
  • 29
  • 5

1 Answers1

0

You have to do the sequence right as OpenGL.accerate is built.

### you can use pip

pip3 cache purge
pip3 uninstall PyOpenGL PyOpenGL.accelerate
pip3 install numpy # SciPy
pip3 install PyOpenGL PyOpenGL.accelerate

### you should be able to use that handler now
Suraj Rao
  • 29,388
  • 11
  • 94
  • 103
KWC
  • 121
  • 8