Configuring Glfw For Python In Eclipse
I'm trying to get OpenGL to work with Python. I'm using a python binding of glfw to display the window/configure the keyboard and such. The Sourceforge page for pyglfw has a downlo
Solution 1:
Python modules must be installed in the right directories. Usually $PYTHON/site-packages/…
. However why bother with doing all this manually. pyglfw is available through PIP.
pip install pyglfw
takes care of downloading, building and installing the module.
Post a Comment for "Configuring Glfw For Python In Eclipse"