Pygame.mixer模块缺失?(Pygame.mixer module missing?)

2019-09-17 13:11发布

我试图做一个小节目的朋友,它需要运行一个.wav文件,它工作正常,当我在python运行它,但是当我在py2exe编译它,它给了我这个 - >

phone.exe:23: RuntimeWarning: use mixer: DLL load failed: The specified module could not be found.
(ImportError: DLL load failed: The specified module could not be found.)
Traceback (most recent call last):
  File "phone.py", line 23, in <module>
  File "pygame\__init__.pyc", line 70, in __getattr__
NotImplementedError: mixer module not available

Answer 1:

这可能帮助:一个例子py2exe项目: http://www.pygame.org/wiki/Pygame2exe



Answer 2:

pygame.mixer取决于libSDL_mixer。 请确保它是可用的。



文章来源: Pygame.mixer module missing?