Message 1 of 1
Installing python external library in 3dsmax 2018

Not applicable
12-30-2020
05:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to install python external libraries, but I don't know why I can't install python packages through pip even though I followed this link https://help.autodesk.com/view/3DSMAX/2018/ENU/?guid=__developer_python_extension_libraries_html
So, I'm installing python libraries such as python OpenGL, NumPy manually. NumPy works fine, but the python OpenGL seems not working properly, it just saying. I wonder if 3dsmax supports using the library like pyopengl..
as an example:
from OpenGL.GLUT import *
glutInit()
glutInitDisplayMode(GLUT_RGB)
It will just output NullFunctionError: Attempt to call an undefined function glutInitDisplayMode, check for bool(glutInitDisplayMode) before calling....