-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OSX: ImportError: cannot import name pointer #8
Comments
The same problem on Windows.
|
Try my fork: https://github.com/karstenw/nodebox-opengl It runs nice on OSX with current Python2, current pyglet and is installable. Haven't tested it on win/linux. |
Try nodebox-opengl 1.6.1 + pyglet-1.3.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"ImportError: cannot import name pointer" can be fixed with:
delete "pointer" import and change "pointer(data)" to "POINTER(data)"
error: "NameError: global name 'c_uint' is not defined" can be fixed with:
add "from ctypes import c_uint"
The text was updated successfully, but these errors were encountered: