Unable to build: macOS 14.7.4, Intel/x86_64 architecture #797
Replies: 1 comment
-
I was able to get it to compile, but I had to download the source for the PyOpenGL-accelerate module, edit the src/vbo.pyx manually, and then rebuild the wheel, like so:
I changed line 191 from "self.buffer = long( buffers )" to "self.buffer = int( buffers )" and line 245 from "assert isinstance( other, (int,long) )" to "assert isinstance( other, (int) )". Last:
Finally, I had to remove everything in OPENRV_SRC/_build/pyopengl_accelerate/accelerate/, and copy the contents of the pyopengl_accelerate-3.1.9 folder to OPENRV_SRC/_build/pyopengl_accelerate/accelerate/. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm unable to build on macOS Sonoma 14.7.4. The error is:
ERROR: Failed building wheel for PyOpenGL-accelerate
Any way to disable this? Apparently PyOpenGL-accelerate is not compatible with Python >= v3.11, and it is not strictly necessary if PyOpenGL is installed?
Beta Was this translation helpful? Give feedback.
All reactions