【发布时间】:2015-11-27 08:27:38
【问题描述】:
我正在尝试导入Pygame 以用于我的Python 3.3 版本。 Pygame 网站上的下载只有 Python 3.1 和 3.2。尽管我认为我已将它安装在正确的路径中,但我似乎无法导入 Pygame。我已经尝试过 3.1 和 3.2 Pygame 下载。
是 Pygame 没有安装在正确的文件路径中,还是 Pygame 与我的 Python (3.3) 版本不兼容?
我运行的是 Windows 7,错误如下:
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
import pygame
File ".\pygame\__init__.py", line 95, in <module>
from pygame.base import *
ImportError: DLL load failed: The specified module could not be found.
【问题讨论】: