Pygame:ImportError:libSDL_ttf-2.0.so.0:无法打开共享对象文件:没有这样的文件或目录
Posted
技术标签:
【中文标题】Pygame:ImportError:libSDL_ttf-2.0.so.0:无法打开共享对象文件:没有这样的文件或目录【英文标题】:Pygame: ImportError: libSDL_ttf-2.0.so.0: cannot open shared object file: No such file or directory 【发布时间】:2015-07-30 06:38:20 【问题描述】:游戏从源代码运行良好。当我在 Linux 上使用 cx_Freeze 编译二进制文件时,我在第二台机器上遇到了错误:
~/tmp/exe.linux-x86_64-2.7 $ ./rungame
/home/local/tmp/exe.linux-x86_64-2.7/library.zip/lib/MenuItem.py:13: RuntimeWarning: use font: libSDL_ttf-2.0.so.0: cannot open shared object file: No such file or directory
(ImportError: libSDL_ttf-2.0.so.0: cannot open shared object file: No such file or directory)
Traceback (most recent call last):
File "/usr/lib64/python2.7/site-packages/cx_Freeze/initscripts/Console.py", line 27, in <module>
File "rungame.py", line 10, in <module>
File "/lib/gameloop.py", line 13, in <module>
File "/lib/settings.py", line 10, in <module>
File "/lib/menuitem.py", line 13, in <module>
File "/usr/lib64/python2.7/site-packages/pygame/__init__.py", line 74, in __getattr__
NotImplementedError: font module not available
(ImportError: libSDL_ttf-2.0.so.0: cannot open shared object file: No such file or directory)
在我编译二进制文件的机器上运行良好。谁能给我建议。
【问题讨论】:
【参考方案1】:运行这个:sudo apt-get install libsdl-ttf2.0-0
【讨论】:
这对我不起作用。libsdl-ttf2.0-0
已安装
import pygame.mixer 对我来说有问题,所以这成功了:sudo apt-get install libsdl2-mixer-2.0-0
@YanickRochon,我遇到了和你一样的问题(libsdl-ttf2.0-0
已经安装了)。这终于成功了:sudo apt-get install python3-sdl2
以上是关于Pygame:ImportError:libSDL_ttf-2.0.so.0:无法打开共享对象文件:没有这样的文件或目录的主要内容,如果未能解决你的问题,请参考以下文章
import pygame时出现ImportError: DLL load failed: 找不到指定的模块,这怎么处理?