Questions tagged «pygame»

5
解决“ DLL加载失败:%1不是有效的Win32应用程序。” 对于Pygame
我最近安装了Python 3.1和Python 3.1的Pygame模块,当我在控制台中键入import python时,出现以下错误: Traceback (most recent call last): File "<pyshell#2>", line 1, in <module> import pygame File "C:\Python31\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. 请帮忙!
92 python  pygame 

21
无法使用pip安装Pygame
我正在尝试安装Pygame。我正在运行带有Enthought Python Distribution的Windows 7。我已成功安装pip,但是当我尝试使用来安装Pygame时pip,出现以下错误: “由于HTTP错误HTTP错误400,无法安装要求Pygame:URL的错误请求...” 我在Google搜索中找不到关于此问题的任何信息,但是我确实找到了另一个堆栈溢出问题,该问题提示问问者使用以下命令: pip install hg+http://bitbucket.org/pygame/pygame 这给了我以下错误: Cannot find command hg 我不确定该怎么做,因为我在Google搜索中找到的所有内容都是针对Mac,因此我不知道我在Windows上能很好地遵循这些说明。

10
如何阻止打印呼叫?
有没有一种方法可以阻止函数调用print? 我正在将pygame.joystick模块用于正在开发的游戏。 我创建了一个pygame.joystick.Joystick对象,并在游戏的实际循环中调用其成员函数get_button以检查用户输入。该功能可以完成我需要做的所有事情,但是问题在于它还会调用print,从而大大降低了游戏速度。 我可以阻止此呼叫print吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.