0

所以...我正在使用 Python 2.7.5,并且正在尝试安装 pygame。我下载了这个:pygame-1.9.1.win32-py2.7.msi 3.1MB

这里运行程序,然后在 python 文件夹中创建 pygame,据我所知,所有相关文件都在那里。但是,当我尝试运行本教程中的示例程序时,它抛出了以下错误消息:L

    Traceback (most recent call last):
  File "C:/Users/USER/Desktop/Bouncing ball", line 1, in <module>
    import sys, pygame
  File "C:\Python27\lib\site-packages\pygame\__init__.py", line 95, in <module>
    from pygame.base import *
ImportError: DLL load failed: %1 is not a valid Win32 application.

有谁知道问题是什么,我能做些什么来纠正它?如果有帮助,我正在运行 64 位 Windows 7 计算机。

4

1 回答 1

0

看起来你正在使用 64 位 python 并且你安装了 32 位 pygame 你需要找到一个 win64 版本......或者 64 位版本是什么......或者安装 32 位 python 并使用它(我使用 32我的 64 位机器上的位 python)

于 2013-09-03T02:03:19.770 回答