我正在尝试运行以下代码:
import pygame
from pygame.locals import *
from OpenGL.GL import *
from OpenGL.GLU import *
但是我得到这个错误:
Traceback (most recent call last):
File "/Users/Abood/Documents/lol.py", line 3, in <module>
from OpenGL.GL import *
ModuleNotFoundError: No module named 'OpenGL.GL'
我尝试删除.GL部分,这出现了:
Traceback (most recent call last): File "/Users/Abood/Documents/lol.py", line 4, in <module> from OpenGL.GLU import * ModuleNotFoundError: No module named 'OpenGL.GLU'
答案 0 :(得分:0)
您必须同时安装pygame和OpenGL软件包。最简单的方法是使用pip
:
pip install pygame
pip install PyOpenGL
这对我有用。安装软件包并运行您的代码后,我得到了:
pygame 1.9.6
Hello from the pygame community. https://www.pygame.org/contribute.html
还有其他安装OpenGL模块的方法。参见installation instructions on the PyOpenGL website。