Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pygame: ImportError: libSDL_ttf-2.0.so.0: cannot open shared object file: No such file or directory

The game is running fine from source code. When I used cx_Freeze to compile the binary file on the Linux I got into error on the second machine:

~/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)

On the machine where I compile the binary it runs fine. Could someone advice me.

like image 545
navro Avatar asked Jul 30 '15 06:07

navro


1 Answers

Run this : sudo apt-get install libsdl-ttf2.0-0

like image 103
vwvolodya Avatar answered Nov 06 '22 20:11

vwvolodya