我正在使用 python 2.7 和 spyder 作为我的 IDE。但是,对于每个导入语句,我都会收到此警告消息。
'from OpenGL.GL import *' used; unable to detect undefined names
'from OpenGL.GL import *' used; unable to detect undefined names
'from OpenGL.GL import *' used; unable to detect undefined names
以下是我的陈述:
from OpenGL.GL import *
from OpenGL.GLU import *
from OpenGL.GLUT import *
我的代码没有错误,它会运行,但应该显示对象的显示窗口是空白的。代码是直接从我的教授那里得到的,作为项目的起点,我看着它在他的笔记本电脑上运行。有没有人有任何技巧来实现这一点?我已经使用 easy_install 更新了 OpenGL。