views:

156

answers:

1

I'm trying to use Eclipse + PyDev for studying OpenGL programming but when I type

from OpenGL.GL import *
from OpenGL.GLUT import *

IDE becomes extremely slow!

Ok. It isn't a smart idea import to much useless things but it's so useful for learning a new library!

Any help?

PS: I use Ubuntu with Eclipse Galileo.

A: 

You may want to disable Project -> Build Automatically on the menu. It makes no sense to continue building files with Python, and you've got an interactive console to test your code. This will not affect code-completion at all.

Xavier Ho